1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 22:51:35 +00:00

Merge pull request #2005 from ThomasWaldmann/fix-travis-osx-builds

travis: fix OS X based testing
This commit is contained in:
TW 2017-01-07 02:29:41 +01:00 committed by GitHub
commit 6cb6984433

View file

@ -17,7 +17,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
brew install lz4
brew outdated pyenv || brew upgrade pyenv
brew install pkg-config
brew install Caskroom/versions/osxfuse
brew install Caskroom/cask/osxfuse
case "${TOXENV}" in
py34)
@ -28,6 +28,10 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv install 3.5.1
pyenv global 3.5.1
;;
py36)
pyenv install 3.6.0
pyenv global 3.6.0
;;
esac
pyenv rehash
python -m pip install --user 'virtualenv<14.0'