force pre 2.0 stevedore on Python 2

stevedore 2.0 dropped Python 2 support, but JJB still supports it.

Change-Id: I35eb127fc528b3e4fc84a4e0503b08ef4f56509f
This commit is contained in:
Evgeni Golov 2020-09-08 09:28:15 +02:00
parent 5a98ebb8bb
commit 9c7dbb6392
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@
six>=1.9.0 # MIT
PyYAML>=3.10.0,<6 # MIT
pbr>=1.8 # Apache-2.0
stevedore>=1.17.1 # Apache-2.0
stevedore>=1.17.1,<2; python_version < '3.0' # Apache-2.0
stevedore>=1.17.1; python_version >= '3.0' # Apache-2.0
python-jenkins>=0.4.15
fasteners
Jinja2