Blob Blame History Raw
From a88f4f221d9f3b935198c9717f89d397c94e1dc5 Mon Sep 17 00:00:00 2001
From: Scott K Logan <logans@cottsay.net>
Date: Fri, 11 Jan 2019 18:44:16 -0800
Subject: [PATCH] Fix argparse requirement for python 2.7

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 78e4ee3..956d9bc 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
 ]
 
 # argparse is part of the standard library since Python 2.7
-if sys.version_info[0] == 2 and sys.version_info[1] <= 7:
+if sys.version_info[0] == 2 and sys.version_info[1] < 7:
     install_requires.append('argparse')
 
 kwargs = {