Skip to content

Commit 217bf4b

Browse files
Bump CI jobs to Python 3.12
1 parent 0883b04 commit 217bf4b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
env:
1111
CACHE_VERSION: 3
1212
KEY_PREFIX: venv
13-
DEFAULT_PYTHON: "3.11"
13+
DEFAULT_PYTHON: "3.12"
1414
PRE_COMMIT_CACHE: ~/.cache/pre-commit
1515

1616
concurrency:
@@ -81,7 +81,7 @@ jobs:
8181
strategy:
8282
fail-fast: false
8383
matrix:
84-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"]
84+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
8585
outputs:
8686
python-key: ${{ steps.generate-python-key.outputs.key }}
8787
steps:
@@ -138,7 +138,7 @@ jobs:
138138
strategy:
139139
fail-fast: false
140140
matrix:
141-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"]
141+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
142142
steps:
143143
- name: Set temp directory
144144
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
@@ -242,11 +242,11 @@ jobs:
242242
steps:
243243
- name: Check out code from GitHub
244244
uses: actions/checkout@v4.1.0
245-
- name: Set up Python 3.11
245+
- name: Set up Python 3.12
246246
id: python
247247
uses: actions/setup-python@v4.7.0
248248
with:
249-
python-version: "3.11"
249+
python-version: "3.12"
250250
check-latest: true
251251
- name: Install dependencies
252252
run: pip install -U -r requirements_minimal.txt

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- published
77

88
env:
9-
DEFAULT_PYTHON: "3.11"
9+
DEFAULT_PYTHON: "3.12"
1010

1111
permissions:
1212
contents: read

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sphinx:
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.11"
11+
python: "3.12"
1212

1313
python:
1414
install:

0 commit comments

Comments
 (0)