Skip to content

Commit

Permalink
Bump CI jobs to python 3.13 (#2607)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls authored Oct 8, 2024
1 parent f201120 commit 0954cd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
env:
CACHE_VERSION: 3
KEY_PREFIX: venv
DEFAULT_PYTHON: "3.12"
DEFAULT_PYTHON: "3.13"
PRE_COMMIT_CACHE: ~/.cache/pre-commit

concurrency:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
outputs:
python-key: ${{ steps.generate-python-key.outputs.key }}
steps:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13-dev"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Set temp directory
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
Expand Down Expand Up @@ -245,11 +245,11 @@ jobs:
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4.2.1
- name: Set up Python 3.12
- name: Set up Python 3.13
id: python
uses: actions/setup-python@v5.2.0
with:
python-version: "3.12"
python-version: "3.13"
check-latest: true
- name: Install dependencies
run: pip install -U -r requirements_minimal.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- published

env:
DEFAULT_PYTHON: "3.12"
DEFAULT_PYTHON: "3.13"

permissions:
contents: read
Expand Down

0 comments on commit 0954cd4

Please sign in to comment.