Skip to content

Commit b1fa565

Browse files
committed
Update tested Python versions
Drop 3.7, it's EOL (and not the system Python in any RHEL, which is why I keep 3.6 around). Add 3.13, move CI to 3.13, and stop using an alpha for 3.12. Signed-off-by: Adam Williamson <[email protected]>
1 parent ebc1120 commit b1fa565

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tox.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
matrix:
1313
python-version:
1414
- "3.6"
15-
- "3.7"
1615
- "3.8"
1716
- "3.9"
1817
- "3.10"
1918
- "3.11"
20-
- "3.12.0-alpha - 3.12.0"
19+
- "3.12"
20+
- "3.13"
2121
include:
2222
- os: "ubuntu-latest"
2323
- os: "ubuntu-20.04"

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312,ci
2+
envlist = py36,py38,py39,py310,py311,py312,py313,ci
33
skip_missing_interpreters = true
44
isolated_build = true
55

66
[gh-actions]
77
python =
88
3.6: py36
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
12-
3.10: py310, ci
11+
3.10: py310
1312
3.11: py311
1413
3.12: py312
14+
3.13: py313, ci
1515

1616
[testenv]
1717
deps =

0 commit comments

Comments
 (0)