Skip to content

Commit 223e291

Browse files
cis: update workflow to include Python 3.12
1 parent 678f423 commit 223e291

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,19 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest, windows-latest, macos-latest]
26-
python-version: ['3.8', '3.9', '3.10', '3.11.2 - 3.12']
26+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2727
qt-version: [5, 6]
2828
qt-binding: [pyqt, pyside]
2929
exclude:
3030
- python-version: '3.10'
3131
qt-version: 5
3232
qt-binding: pyside
33-
- python-version: '3.11.2 - 3.12'
33+
- python-version: '3.11'
3434
qt-version: 5
35+
- python-version: '3.12'
36+
qt-version: 5
37+
- python-version: '3.9'
38+
qt-version: 6
3539
- python-version: '3.8'
3640
qt-version: 6
3741
- os: ubuntu-latest

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v4
3131
with:
32-
python-version: '3.10'
32+
python-version: '3.11'
3333
cache: 'pip'
3434
cache-dependency-path: 'docs/requirements.txt'
3535
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
os: [windows-latest, ubuntu-latest, macos-latest]
48-
python: [38, 39, 310, 311]
48+
python: [38, 39, 310, 311, 312]
4949
steps:
5050
- name: Checkout
5151
uses: actions/checkout@v4
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Python
5757
uses: actions/setup-python@v4
5858
with:
59-
python-version: '3.9'
59+
python-version: '3.11'
6060
- name: Install cibuildwheel
6161
run: |
6262
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)