From fb6b0a5d3146d18c3601fbb526fcf75f3be0c0fd Mon Sep 17 00:00:00 2001 From: kakwa Date: Sat, 9 Feb 2019 12:12:24 +0100 Subject: [PATCH] limit cherrypy to < 18.0.0 in setup.py cherrypy dropped support for python2 with 18.0.0, 17.X is the last version usable with python 2. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ace0cdc..a52e92c 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from version import version # change requirements according to python version if sys.version_info[0] == 2: install_requires = [ - 'CherryPy >= 3.0.0', + 'CherryPy >= 3.0.0,< 18.0.0', 'python-ldap', 'PyYAML', 'Mako'