From 8920fd74b87620bc580f415cb91ae3aa91a35c1a Mon Sep 17 00:00:00 2001 From: Sebastian Noack Date: Sun, 20 Sep 2015 19:26:05 +0200 Subject: [PATCH] Added Python 3.5 to tox and Travis configuration --- .travis.yml | 3 ++- tox.ini | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0881b19d..8e2ea0b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,12 +4,13 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5.0" install: - pip install tox script: - tox -e \ - $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/') + $(echo $TRAVIS_PYTHON_VERSION | sed 's/^\([0-9]\)\.\([0-9]\).*/py\1\2/') notifications: email: false diff --git a/tox.ini b/tox.ini index d5079b93..0daabf75 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, pypy, py33, py34 +envlist = py26, py27, pypy, py33, py34, py35 [testenv] commands = -- 2.47.2