From f8a98b8fbcce8504cb5f7460fe1d48964397f45c Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Tue, 30 Oct 2018 11:12:23 +1100 Subject: [PATCH] bound natsort to 5.2.x Current latest (5.4.1) FTBFS on Python 2.7. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f56b68d..4bf709c 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( 'futures>=3.2.0', 'incf.countryutils>=1.0', 'ipaddress>=1.0.22', - 'natsort>=5.2.0', + 'natsort>=5.2.0,<5.3', # botocore doesn't like >=2.7.0 for some reason 'python-dateutil>=2.6.0,<2.7.0', 'requests>=2.18.4'