From 51748f2090df6b6a77bfe29e40c0b793bf69f412 Mon Sep 17 00:00:00 2001 From: Guillaume Rousse Date: Thu, 11 Jul 2019 17:55:19 +0200 Subject: [PATCH 1/2] explicit is better than implicit --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index ff92ad89..e679f281 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,8 @@ README = open(join(here, 'README.rst')).read() NEWS = open(join(here, 'NEWS.txt')).read() +python_requires='>=3.5'; + install_requires = [ 'mako', 'lxml >=4.1.1', @@ -55,6 +57,10 @@ long_description=README + '\n\n' + NEWS, classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], keywords='identity federation saml metadata', author=__author__, From bfe68b8571dc62f315ca85f0e38a118b0cf19ccc Mon Sep 17 00:00:00 2001 From: Guillaume Rousse Date: Thu, 11 Jul 2019 17:55:47 +0200 Subject: [PATCH 2/2] get rid of legacy dependencies --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index e679f281..4ce47e65 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ 'ipaddr', 'publicsuffix2', 'redis', - 'futures', 'requests', 'requests_cache', 'requests_file',