mirror of https://github.com/borgbackup/borg.git
Merge pull request #341 from ThomasWaldmann/python35
also test py35 on travis
This commit is contained in:
commit
b4aab655c1
|
@ -17,6 +17,9 @@ matrix:
|
|||
- python: 3.4
|
||||
os: linux
|
||||
env: TOXENV=py34
|
||||
- python: 3.5
|
||||
os: linux
|
||||
env: TOXENV=py35
|
||||
- language: generic
|
||||
os: osx
|
||||
osx_image: xcode6.4
|
||||
|
@ -29,6 +32,10 @@ matrix:
|
|||
os: osx
|
||||
osx_image: xcode6.4
|
||||
env: TOXENV=py34
|
||||
- language: generic
|
||||
os: osx
|
||||
osx_image: xcode6.4
|
||||
env: TOXENV=py35
|
||||
|
||||
install:
|
||||
- ./.travis/install.sh
|
||||
|
|
|
@ -30,6 +30,10 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
|
|||
pyenv install 3.4.3
|
||||
pyenv global 3.4.3
|
||||
;;
|
||||
py35)
|
||||
pyenv install 3.5.0
|
||||
pyenv global 3.5.0
|
||||
;;
|
||||
esac
|
||||
pyenv rehash
|
||||
python -m pip install --user virtualenv
|
||||
|
|
Loading…
Reference in New Issue