From 923b3458e89730462f4da481582f6ad5ae3de9fb Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 6 Feb 2024 10:27:52 +0100 Subject: [PATCH] require Python 3.6 oldest testable Python, don't worry about autoformatters causing issues --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6b301f0..de88f10 100644 --- a/setup.py +++ b/setup.py @@ -47,15 +47,13 @@ def run(self): long_description=readme, long_description_content_type="text/markdown", license="BSD", + python_requires=">=3.6", cmdclass={ "bdist_egg": bdist_egg if "bdist_egg" in sys.argv else "bdist_egg_disabled", }, classifiers=[ "License :: OSI Approved :: BSD License", "Operating System :: MacOS :: MacOS X", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", ], )