From 6eee318f68fd038c718863659859632846b4202b Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Wed, 7 Jun 2023 15:50:29 +0100 Subject: [PATCH] Removed upper bound on Python version This is unnecessary (Python is not SemVer'ed) and breaks dependency solvers. See https://github.com/orgs/python-poetry/discussions/3757#discussioncomment-435337 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec85910..a021f19 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ ]), include_package_data=True, zip_safe=False, - python_requires='>=3.7, <4', + python_requires='>=3.7', install_requires=install_requires, tests_require=tests_require, extras_require={