From eaa228dda634e3420565672c412c5d6d67b6b79e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Trifir=C3=B2?= Date: Wed, 8 Nov 2023 16:22:39 +0100 Subject: [PATCH] add support for 3.11 and 3.12, drop 3.8 --- noxfile.py | 2 +- setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 72f756c..ed2342e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -9,7 +9,7 @@ locations = "src", "tests" -@nox.session(python=["3.8", "3.9", "3.10"]) +@nox.session(python=["3.9", "3.9", "3.10", "3.11", "3.12"]) def tests(session: nox.Session) -> None: session.install(".[tests]") session.run( diff --git a/setup.cfg b/setup.cfg index 9c1a8a5..a471aad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,9 +11,10 @@ authors = Daniele Trifirò maintainer_email = dtrifiro@redhat.com classifiers = Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Development Status :: 1 - Planning [options]