summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-02-25 20:05:27 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2016-02-25 20:05:27 +0100
commit359abafff80441ec9348ae1e342c8a9396897b32 (patch)
tree520f9f283d57dfa51cea8c20fde2152dccdf1c42
parent4470230e440c9df4a21707163d1837c2ec607318 (diff)
downloadpsutil-359abafff80441ec9348ae1e342c8a9396897b32.tar.gz
travis: try to use latest py versions
-rwxr-xr-x.ci/travis/install.sh24
-rw-r--r--.travis.yml4
2 files changed, 16 insertions, 12 deletions
diff --git a/.ci/travis/install.sh b/.ci/travis/install.sh
index c6774797..e753ba59 100755
--- a/.ci/travis/install.sh
+++ b/.ci/travis/install.sh
@@ -14,24 +14,28 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
case "${PYVER}" in
py26)
- pyenv install 2.6.9
- pyenv virtualenv 2.6.9 psutil
+ pyenv install 2.6
+ pyenv virtualenv 2.6 psutil
;;
py27)
- pyenv install 2.7.10
- pyenv virtualenv 2.7.10 psutil
+ pyenv install 2.7
+ pyenv virtualenv 2.7 psutil
;;
py32)
- pyenv install 3.2.6
- pyenv virtualenv 3.2.6 psutil
+ pyenv install 3.2
+ pyenv virtualenv 3.2 psutil
;;
py33)
- pyenv install 3.3.6
- pyenv virtualenv 3.3.6 psutil
+ pyenv install 3.3
+ pyenv virtualenv 3.3 psutil
;;
py34)
- pyenv install 3.4.3
- pyenv virtualenv 3.4.3 psutil
+ pyenv install 3.4
+ pyenv virtualenv 3.4 psutil
+ ;;
+ py35)
+ pyenv install 3.5
+ pyenv virtualenv 3.5 psutil
;;
esac
pyenv rehash
diff --git a/.travis.yml b/.travis.yml
index f40f7d73..8d5a50ba 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@ matrix:
- language: generic
os: osx
env: PYVER=py34
- # Not supported yet.
+ # XXX - not supported yet
# - language: generic
# os: osx
# env: PYVER=py35
@@ -28,4 +28,4 @@ install:
script:
- ./.ci/travis/run.sh
after_success:
- - coveralls # upload reports to coveralls.io
+ - coveralls # upload reports to coveralls.io