1
1
mirror of https://github.com/sshuttle/sshuttle.git synced 2025-07-04 08:40:30 +02:00

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 

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

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