646282b533
To avoid anvils dependencies causing conflicts with the prepared, packaged, and installed openstack dependencies use a virtualenv to install said dependencies and then use the python that exists in that environment to run anvil instead of the system python. Change-Id: I6bb7851baa481b768f92bd828a9cec64e60f190d
17 lines
534 B
Plaintext
17 lines
534 B
Plaintext
# Install bounded pep8/pyflakes first, then let flake8 install
|
|
pep8==1.4.5
|
|
pyflakes>=0.7.2,<0.7.4
|
|
flake8==2.0
|
|
pylint==0.25.2
|
|
hacking>=0.8.0,<0.9
|
|
mock>=1.0
|
|
# This is only needed for running anvils setup.py which is not done
|
|
# during running of anvil, but is done during testing or package
|
|
# creation...
|
|
#
|
|
# Using it in the created virtualenv causes conflict with
|
|
# other openstack packages (running there setup.py egg_info will break)
|
|
# so placing it here means that we will avoid such conflicts in the first
|
|
# place.
|
|
pbr>=0.5.21,<1.0
|