From 80f20724370e3fe0da9291fe78c2905c5dbbf5bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 25 Nov 2024 10:46:49 +0100 Subject: [PATCH] Drop support for unsupported Python versions See https://devguide.python.org/versions/ --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7cff781..4d4056d 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], - python_requires='>=3.6', + python_requires='>=3.9', install_requires=[ # Add any dependencies here ],