From 1b50d364c67ae1eb9dc831e312fc11b75f4ad43e Mon Sep 17 00:00:00 2001 From: "Wilson E. Husin" Date: Wed, 17 Jun 2020 22:17:03 -0700 Subject: Ask setuptools to require Python 3.5 and above python_requires will be evaluated by setuptools to ensure the package is compatible with currently active Python interpreter. Reference: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires Closes #470 Signed-off-by: Wilson Husin --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1c73a3f..388f905 100755 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ setup( 'sshuttle = sshuttle.cmdline:main', ], }, + python_requires='>=3.5', tests_require=[ 'pytest', 'pytest-cov', -- cgit v1.2.3