CI: update to Python 3.12; also test with 3.13

This commit is contained in:
Christoph Reiter
2024-12-06 13:53:54 +01:00
parent a6b3079ae3
commit 19c8f00aba
3 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
@@ -125,7 +125,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
# Note that ARM64 prior to Win11 requires x86, but this will install x64

View File

@@ -42,7 +42,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'requirements.txt'

View File

@@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4