mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 09:24:21 +01:00
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:
parent
bbfe96d4f7
commit
fb6b0a5d31
2
setup.py
2
setup.py
@ -23,7 +23,7 @@ from version import version
|
|||||||
# change requirements according to python version
|
# change requirements according to python version
|
||||||
if sys.version_info[0] == 2:
|
if sys.version_info[0] == 2:
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'CherryPy >= 3.0.0',
|
'CherryPy >= 3.0.0,< 18.0.0',
|
||||||
'python-ldap',
|
'python-ldap',
|
||||||
'PyYAML',
|
'PyYAML',
|
||||||
'Mako'
|
'Mako'
|
||||||
|
Loading…
Reference in New Issue
Block a user