From 35488539fb0f23ff64ebcf3ff9a95d6b15ad8d1c Mon Sep 17 00:00:00 2001 From: "Sean C. Gillies" Date: Thu, 27 Sep 2018 13:05:36 -0600 Subject: [PATCH] Explicitly spec click, don't rely on cligj --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dc6e8cab..beb4296a 100755 --- a/setup.py +++ b/setup.py @@ -332,7 +332,7 @@ with open('README.rst') as f: # Runtime requirements. inst_reqs = [ - 'affine', 'attrs', 'cligj>=0.5', 'numpy', 'snuggs>=1.4.1', 'click-plugins'] + 'affine', 'attrs', 'click>=4.0,<8', 'cligj>=0.5', 'numpy', 'snuggs>=1.4.1', 'click-plugins'] if sys.version_info < (3, 4): inst_reqs.append('enum34')