From d69bffd9397f78f6e0a80878f571505e9fdc86d7 Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Fri, 29 Mar 2024 13:40:07 -0400 Subject: [PATCH] Enforce Python>=3.8 required in setup.py --- setup.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 236bc1b5..85671138 100755 --- a/setup.py +++ b/setup.py @@ -113,6 +113,7 @@ setup( "translate_toolkit" ], }, + python_requires='>=3.8', tests_require=load_requirements("test_requirements.txt"), cmdclass={'test': PyTest}, test_suite='', @@ -131,16 +132,11 @@ setup( 'Environment :: Web Environment', 'License :: OSI Approved :: GNU General Public License (GPL)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - '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', 'Topic :: Internet :: Proxy Servers', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: WSGI',