From 9cb2a2b143222d870e107a7e08dca69115e5ee34 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 5 Mar 2024 00:18:36 +0900 Subject: [PATCH] Update supported python versions (#168) This library works without any problems with Python 3.11 so far. So we can update the classifiers. Also, adds python_requires to block installation into Python < 3.8. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 907feeb..0b70e45 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,6 +5,7 @@ summary = Suite of tools and fixtures to manage daemons for testing description_file = README.rst author = Julien Danjou author_email = julien@danjou.info +python_requires = >=3.8 classifier = Intended Audience :: Information Technology License :: OSI Approved :: Apache Software License @@ -14,6 +15,7 @@ classifier = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Software Development :: Testing [options]