Skip to content

Commit 3cbfc20

Browse files
committed
Support Python 3.12
1 parent 510bfe0 commit 3cbfc20

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import nox
22

33

4-
@nox.session(python=["3.8", "3.9", "3.10", "3.11"])
4+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
55
def tests(session):
66
session.run("python", "-m", "unittest")

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers =
1515
Programming Language :: Python :: 3.9
1616
Programming Language :: Python :: 3.10
1717
Programming Language :: Python :: 3.11
18+
Programming Language :: Python :: 3.12
1819
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
1920
Operating System :: OS Independent
2021
python_requires = '>=3.8'

0 commit comments

Comments
 (0)