From f0e443cb06d0073ae459903c19a91352387b45e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 2 Nov 2015 11:11:50 +0200 Subject: [PATCH 1/2] Add Python 3.4, 3.5 and pypy3 to Travis --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index cf7c70f..75273f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,10 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" + - "3.5" - "pypy" + - "pypy3" install: - if [ "$TRAVIS_PYTHON_VERSION" == "2.5" ]; then pip --quiet install unittest2; fi - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip --quiet install unittest2; fi From e6ba763b1c24ac4bd8f0d168e4bddc0d985c3cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 2 Nov 2015 11:13:48 +0200 Subject: [PATCH 2/2] Remove Python 2.5 from Travis http://blog.travis-ci.com/2013-11-18-upcoming-build-environment-updates/ --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 75273f7..2dc9803 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "2.5" - "2.6" - "2.7" - "3.2" @@ -10,7 +9,6 @@ python: - "pypy" - "pypy3" install: - - if [ "$TRAVIS_PYTHON_VERSION" == "2.5" ]; then pip --quiet install unittest2; fi - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip --quiet install unittest2; fi - python setup.py install script: