From 9d0d37fab0749b6c2a72839c0b2385d755d72f9d Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 27 Oct 2015 23:06:32 +0100 Subject: [PATCH] also test py35 on travis --- .travis.yml | 7 +++++++ .travis/install.sh | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/.travis.yml b/.travis.yml index 497bc7c0..156391f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/.travis/install.sh b/.travis/install.sh index 36045318..4de5e0c1 100755 --- a/.travis/install.sh +++ b/.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