Skip to content

Commit 72b4728

Browse files
committed
Add support for Python 3.12
1 parent 06d3ddf commit 72b4728

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1313

1414
steps:
1515
- uses: actions/checkout@v1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
'Programming Language :: Python :: 3.9',
3939
'Programming Language :: Python :: 3.10',
4040
'Programming Language :: Python :: 3.11',
41+
'Programming Language :: Python :: 3.12',
4142
'Programming Language :: Python',
4243
'Topic :: Software Development :: Libraries :: Python Modules',
4344
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py38, py39, py310, py311
2+
envlist = py38, py39, py310, py311, py312
33

44
[gh-actions]
55
python =
66
3.8: py38
77
3.9: py39
88
3.10: py310
99
3.11: py311
10+
3.12: py312
1011

1112
[testenv]
1213
deps =

0 commit comments

Comments
 (0)