From 3cbfc206edb73242d9eba9d72674958c361fe80e Mon Sep 17 00:00:00 2001 From: Jaap Joris Vens Date: Thu, 9 May 2024 21:57:42 +0200 Subject: [PATCH] Support Python 3.12 --- noxfile.py | 2 +- setup.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 13b1406..c2b503e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,6 +1,6 @@ import nox -@nox.session(python=["3.8", "3.9", "3.10", "3.11"]) +@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"]) def tests(session): session.run("python", "-m", "unittest") diff --git a/setup.cfg b/setup.cfg index 73a41d8..f716aff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Operating System :: OS Independent python_requires = '>=3.8'