From 8ff231f79bf5447d6ed9278810117b31f2a952d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sat, 6 Jan 2018 16:09:06 +0100 Subject: [PATCH] Get TravisCI working again Python 2.6 is EOL since long time ago and fully unsupported by recent linux distributions; even Ubuntu did not ship it at least since 12.04 LTS. Python 3.3 is EOL as well and is not included in any actively supported major linux distribution. In the meantime Python 3.6 was released, which is shipped by all actively supported major linux distributions of the time and will be shipped in Ubuntu 18.04 LTS. --- .travis.yml | 26 +++++++++++++------------- tox.ini | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0374cc..fb6860b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,24 +1,24 @@ -env: -- TOXENV=py34 -- TOXENV=py33 -- TOXENV=py27 -- TOXENV=py26 -- TOXENV=pypy - -install: pip install -U tox - language: python +cache: + directories: + - .tox + - $HOME/.cache/pip + matrix: include: + - python: 2.7 + env: TOXENV=py27 + - python: 3.4 + env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 + - python: 3.6 + env: TOXENV=py36 + +install: pip install -U tox script: tox -cache: - directories: - - .tox - - $HOME/.cache/pip deploy: provider: pypi diff --git a/tox.ini b/tox.ini index f66b93b..a45a306 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py33, py34, py35 +envlist = py27, py34, py35, py36 [testenv] deps =