From 86869618b517c38c7b2198c0390534e02f3c9cc3 Mon Sep 17 00:00:00 2001 From: gopackgo90 Date: Thu, 23 Jun 2022 10:46:16 -0500 Subject: [PATCH] Update python_requires to match supported python versions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dfa661c1..aa6c34fb 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,5 @@ ] metadata["long_description"] = readme metadata["long_description_content_type"] = "text/markdown" -metadata["python_requires"] = ">=3.5" +metadata["python_requires"] = ">=3.7" setuptools.setup(**metadata)