aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-23 11:14:05 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-23 11:14:05 -0400
commit9e35dcdd7ca5cee4b111c8d0f44229184645dbb1 (patch)
tree16276e025c602ebea7f612e89ebb25efdf037807
parent38657d271b64d604ed7a3ae57f3c3f0cf695b065 (diff)
downloadb4-9e35dcdd7ca5cee4b111c8d0f44229184645dbb1.tar.gz
Require python >= 3.5
Prevent ourselves from being installable on python versions earlier than what we support. Reported-by: James Bottomley <James.Bottomley@hansenpartnership.com> Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 5944988..5b37505 100644
--- a/setup.py
+++ b/setup.py
@@ -31,6 +31,7 @@ setup(
install_requires=[
'requests'
],
+ python_requires='>=3.6',
entry_points={
'console_scripts': [
'b4=b4.command:cmd'