partially remove virtualenv/pip version requirement, fixes #1738

Is needed only for python 3.2 support.

For normal development, we expect you have py34+ for borg 1.1.

For vagrant, it is still needed because of older VMs like wheezy (py32).

Not needed for Travis-CI any more, we moved to trusty VMs (py34) there.
This commit is contained in:
Thomas Waldmann 2016-11-29 21:30:23 +01:00
parent 734f8a9417
commit 6290e70c80
2 changed files with 3 additions and 3 deletions

View File

@ -31,9 +31,9 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
;;
esac
pyenv rehash
python -m pip install --user 'virtualenv<14.0'
python -m pip install --user virtualenv
else
pip install 'virtualenv<14.0'
pip install virtualenv
sudo apt-get update
sudo apt-get install -y liblz4-dev
sudo apt-get install -y libacl1-dev

View File

@ -1,4 +1,4 @@
virtualenv<14.0
virtualenv
tox
pytest
pytest-cov