# HG changeset patch # User Mads Kiilerich # Date 2020-01-03 22:49:19 # Node ID f254dd2f9dcba522953ec26717c0088f50849294 # Parent af1b0a59e60560c5df264ee4c65f07daa389cc97 setup: bump ipaddr minium version to 2.2.0 to get py3 support 2.2.0 is also the latest version, but released in 2017. Previous versions failed installation on py3 with: File "/tmp/pip-install-o31ka351/ipaddr/ipaddr.py", line 1450 ip_int = 0L ^ SyntaxError: invalid syntax ---------------------------------------- diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ requirements = [ "Paste >= 2.0.3, < 3.1", "bleach >= 3.0, < 3.2", "Click >= 7.0, < 8", - "ipaddr >= 2.1.10, < 2.3", + "ipaddr >= 2.2.0, < 2.3", "paginate >= 0.5, < 0.6", "paginate_sqlalchemy >= 0.3.0, < 0.4", ]