From f54b71e459ff1d4d5c6c05182cb15735688744fc Mon Sep 17 00:00:00 2001 From: Micha den Heijer Date: Mon, 28 Dec 2020 21:23:43 +0100 Subject: [PATCH] Fix supported Python versions bug (#29) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c29dbea..a47000a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ long_description_content_type="text/markdown", author="Micha den Heijer", author_email="micha@michadenheijer.com", - python_requires=">=3.5, <=3.9", + python_requires=">=3.5, <3.10", packages=setuptools.find_packages(), include_package_data = True, url="https://github.com/michadenheijer/pynytimes",