1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 16:26:29 +00:00

Merge pull request #1900 from ThomasWaldmann/latest-virtualenv

partially remove virtualenv/pip version requirement, fixes #1738
This commit is contained in:
enkore 2016-11-30 01:51:01 +01:00 committed by GitHub
commit 53abed6b86
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