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 <wilsonehusin@gmail.com>
This commit is contained in:
Wilson E. Husin 2020-06-17 22:17:03 -07:00
parent 8c91958ff3
commit 1b50d364c6
No known key found for this signature in database
GPG Key ID: 66A6A0491B7ED6E5

View File

@ -61,6 +61,7 @@ setup(
'sshuttle = sshuttle.cmdline:main',
],
},
python_requires='>=3.5',
tests_require=[
'pytest',
'pytest-cov',