7e777a63b5
testinfra 1.17.0 has a broken wheel on pypi that attempts to install importlib regardless of the python version. Unfortunately this breaks under python3 (and possibly under python2.7) as this is a python2.6 only dependency. Avoid this trouble by not installing that package version. I've filed https://github.com/philpep/testinfra/issues/380 upstream to see if they can fix this. Change-Id: I5cdfb8467cbc62cf729a9070589f5dcf5c794234
12 lines
435 B
Plaintext
12 lines
435 B
Plaintext
# The order of packages is significant, because pip processes them in the order
|
|
# of appearance. Changing the order has an impact on the overall integration
|
|
# process, which may cause wedges in the gate later.
|
|
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
|
|
bashate>=0.2 # Apache-2.0
|
|
PyYAML>=3.10.0 # MIT
|
|
ansible-lint
|
|
openstacksdk
|
|
zuul-sphinx>=0.2.3
|
|
# testinfra 1.17.0 has a broken wheel that won't install under python3
|
|
testinfra!=1.17.0
|