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.
This commit is contained in:
kakwa 2019-02-09 12:12:24 +01:00
parent bbfe96d4f7
commit fb6b0a5d31
1 changed files with 1 additions and 1 deletions

View File

@ -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'