From b077edbc92020e52cdd79d6ddc10ebbef704c60f Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 4 Feb 2016 18:44:40 +0100 Subject: setup.py: no range operators for env markers --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 59d4a261..94902085 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,9 @@ setup( "urwid>=1.3.1", "lxml>=3.5.0", ], - ':python_version < "3.4"': [ + # Do not use a range operator here: https://bitbucket.org/pypa/setuptools/issues/380 + # Ubuntu Trusty and other still ship with setuptools < 17.1 + ':python_version == "2.7"': [ "enum34>=1.0.4", ], 'dev': [ -- cgit v1.2.3