From a78da1558a40607f24ef2fcdf794aa4d7c549fe3 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Thu, 10 Dec 2020 18:01:31 +0100 Subject: [PATCH] Update setup.py to drop support for Python 3.5 Python 3.5 has now reached its end-of-life and has been retired. https://www.python.org/dev/peps/pep-0478/ The optional (but highly recommended) 'cryptography' dependency has also just dropped support for 3.5. Continuing support for 3.5 in TUF does not seem worth the effort. Signed-off-by: Lukas Puehringer --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 92d3facf..e0037306 100755 --- a/setup.py +++ b/setup.py @@ -100,7 +100,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', @@ -113,7 +112,7 @@ 'Source': 'https://github.com/theupdateframework/tuf', 'Issues': 'https://github.com/theupdateframework/tuf/issues' }, - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", install_requires = [ 'requests>=2.19.1', 'six>=1.11.0',