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.
In the meantime Python 3.6 was released.
  • Loading branch information
besser82 committed Jan 6, 2018
1 parent 8aff6c4 commit 50de3b3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
28 changes: 15 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
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.3
env: TOXENV=py33
- 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, py33, py34, py35, py36

[testenv]
deps =
Expand Down

0 comments on commit 50de3b3

Please sign in to comment.