Skip to content

Commit b39db0c

Browse files
committed
Add Python 3.12 and remove 3.7
1 parent 29e05a5 commit b39db0c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci_python_compatibility.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
9+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1010

1111
steps:
1212
- name: Check out the source code

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
'Programming Language :: Python :: 3.8',
3434
'Programming Language :: Python :: 3.9',
3535
'Programming Language :: Python :: 3.10',
36+
'Programming Language :: Python :: 3.11',
37+
'Programming Language :: Python :: 3.12',
3638
],
3739
python_requires='>=3.7, <4',
3840
test_suite='tests',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311
2+
envlist = py38, py39, py310, py311, py312
33
skip_missing_interpreters = true
44

55
[testenv]
@@ -17,11 +17,11 @@ commands =
1717

1818
[gh-actions]
1919
python =
20-
3.7: py37
2120
3.8: py38
2221
3.9: py39
2322
3.10: py310
2423
3.11: py311
24+
3.12: py312
2525

2626
[pycodestyle]
2727
max-doc-length = 80

0 commit comments

Comments
 (0)