diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-03-23 11:14:05 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-03-23 11:14:05 -0400 |
commit | 9e35dcdd7ca5cee4b111c8d0f44229184645dbb1 (patch) | |
tree | 16276e025c602ebea7f612e89ebb25efdf037807 | |
parent | 38657d271b64d604ed7a3ae57f3c3f0cf695b065 (diff) | |
download | b4-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -31,6 +31,7 @@ setup( install_requires=[ 'requests' ], + python_requires='>=3.6', entry_points={ 'console_scripts': [ 'b4=b4.command:cmd' |