Skip to content

Commit fca35a6

Browse files
committed
Add Python 3.15 to the CI test matrix
Mirrors how 3.14 was added in e709c83: a matrix entry in build.yml and the corresponding env in the tox envlist. The existing `${{ matrix.py }}-dev` suffix on setup-python already picks up the newest prerelease, so no extra handling is needed. No classifier is added yet. The 3.14 classifier landed once 3.14 reached rc; 3.15 is still in beta, so this only starts testing against it rather than declaring support. Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
1 parent ad550bd commit fca35a6

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
include:
24+
- { "py": "3.15", "tox_env": "py315" }
2425
- { "py": "3.14", "tox_env": "py314" }
2526
- { "py": "3.13", "tox_env": "py313" }
2627
- { "py": "3.12", "tox_env": "py312-cov" }

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist =
3+
py315
34
py314
45
py313
56
py312-cov

0 commit comments

Comments
 (0)