Skip to content

Commit 5cd27da

Browse files
committed
Update tested Python versions
Nothing actually uses Python 3.7, but 3.12 is becoming more common (especially on Mac).
1 parent 686a810 commit 5cd27da

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/pr-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
matrix:
2525
python-version:
2626
- '3.6.8' # slc7, slc8 and cs8 containers
27-
- '3.7'
28-
- '3.8'
29-
- '3.9'
30-
- '3.10'
27+
- '3.8.10' # ubuntu2004 container
28+
- '3.9.16' # slc9 container
29+
- '3.10.6' # ubuntu2204 container
3130
- '3.11'
31+
- '3.12'
3232

3333
steps:
3434
- uses: actions/checkout@v3

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.20
3-
envlist = lint, py{27, 36, 37, 38, 39, 310, 311}, darwin
3+
envlist = lint, py{27, 36, 37, 38, 39, 310, 311, 312, 313}, darwin
44

55
[gh-actions]
66
# The "lint" job is run separately.
@@ -12,6 +12,8 @@ python =
1212
3.9: py39
1313
3.10: py310
1414
3.11: py311
15+
3.12: py312
16+
3.13: py313
1517

1618
[testenv:lint]
1719
# Warning: This environment inherits settings from the main [testenv] section.

0 commit comments

Comments
 (0)