From fedd77b3fbfc8c926b635fbfe1c80f11c9ef6b60 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Mar 2020 13:16:25 +0100 Subject: [PATCH] Simplify `python_requires` (#478) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f17f89ab9..4d45f9f6a 100755 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ def get_version(package): "Programming Language :: Python :: 3.8", "Topic :: Utilities", ], - python_requires=">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", + python_requires=">=3.5", extras_require=EXTRAS_REQUIRE, entry_points={"console_scripts": ["pyjwt = jwt.__main__:main"]}, options={"bdist_wheel": {"universal": "1"}},