mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Pin CherryPy version to < 18.0.0 in requirements files for PY2
Version 18.0 now requires Python 3.5, so we need to pin this for Py2.
This commit is contained in:
parent
39fdacc434
commit
9e274335a3
2 changed files with 4 additions and 2 deletions
|
@ -4,5 +4,6 @@ yappi>=0.8.2
|
|||
--allow-unverified python-novaclient>2.17.0
|
||||
--allow-unverified python-neutronclient>2.3.6
|
||||
python-gnupg
|
||||
cherrypy>=3.2.2
|
||||
cherrypy>=3.2.2,<18.0.0; python_version < '3.5'
|
||||
cherrypy>=3.2.2; python_version >= '3.5'
|
||||
libnacl
|
||||
|
|
|
@ -21,7 +21,8 @@ kubernetes<4.0
|
|||
psutil
|
||||
pyvmomi
|
||||
setproctitle
|
||||
cherrypy; sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
cherrypy>=3.2.2,<18.0.0; python_version < '3.5' and sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
cherrypy>=3.2.2; python_version >= '3.5' and sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
ldap; sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
pyinotify; sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
PyMySQL; sys.platform != 'win32' and sys.platform != 'darwin'
|
||||
|
|
Loading…
Add table
Reference in a new issue