Skip to content

Commit 00dc869

Browse files
authored
Merge pull request #374 from BiAPoL/expand-tests
Expand CI tests to later Python versions 3.12 and 3.13
2 parents 77e4bb7 + 66e3383 commit 00dc869

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
platform: [ubuntu-latest, windows-latest, macos-latest] # macos-latest (disabled, see related issue)
28-
python-version: ["3.9", "3.10", "3.11"]
28+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2929

3030
steps:
3131
- uses: actions/checkout@v3

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = python{39}-{linux,macos,windows}
3+
envlist = python{39, 310, 311, 312, 313}-{linux,macos,windows}
44

55
[gh-actions]
66
python =
77
3.9: py39
8+
3.10: py310
9+
3.11: py311
10+
3.12: py312
11+
3.13: py313
812

913
[gh-actions:env]
1014
PLATFORM =

0 commit comments

Comments
 (0)