summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilson E. Husin <wilsonehusin@gmail.com>2020-06-17 22:17:03 -0700
committerWilson E. Husin <wilsonehusin@gmail.com>2020-06-17 22:17:03 -0700
commit1b50d364c67ae1eb9dc831e312fc11b75f4ad43e (patch)
tree04ef1d3fc261b5e322a58b957168a7adbd0dc11e
parent8c91958ff3805dbdef9b659061a0de25ba4b34f8 (diff)
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>
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
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',