From 87960c85c0afae1321723d4d46ff5ee358c5631d Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sun, 26 Jul 2026 00:51:57 +0100 Subject: [PATCH] fix min python version - fixes #211 --- setup.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 2fd2270..6936d0a 100644 --- a/setup.py +++ b/setup.py @@ -37,16 +37,10 @@ long_description=LONG_DESCRIPTION, license='BSD-3-Clause', + python_requires=">=3.10", classifiers=[ "Programming Language :: Python", "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", "Programming Language :: Python :: 3.12",