From 5463d2db8a17b9090cbe33dd35af46445ecee414 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Mon, 15 Jul 2024 08:32:49 +0200 Subject: [PATCH] Update Python version support. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fc9b500..cbbc2b0 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read(*rnames): include_package_data=True, package_dir={'': 'src'}, namespace_packages=['zc', 'zc.recipe'], - python_requires='>=3.7', + python_requires='>=3.8', extras_require={ 'test': ['zope.testing'], }, @@ -55,11 +55,11 @@ def read(*rnames): "License :: OSI Approved :: Zope Public License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "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", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Build Tools",