Skip to content

Commit

Permalink
Get TravisCI working again
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
besser82 committed Jan 7, 2018
1 parent 8aff6c4 commit 8ff231f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34, py35
envlist = py27, py34, py35, py36

[testenv]
deps =
Expand Down

0 comments on commit 8ff231f

Please sign in to comment.