From 9e35dcdd7ca5cee4b111c8d0f44229184645dbb1 Mon Sep 17 00:00:00 2001 From: Konstantin Ryabitsev Date: Mon, 23 Mar 2020 11:14:05 -0400 Subject: Require python >= 3.5 Prevent ourselves from being installable on python versions earlier than what we support. Reported-by: James Bottomley Signed-off-by: Konstantin Ryabitsev --- setup.py | 1 + 1 file changed, 1 insertion(+) 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' -- cgit v1.2.3