Skip to content

Commit 50de3b3

Browse files
committed
Get TravisCI working again
Python 2.6 is EOL since long time ago and fully unsupported. In the meantime Python 3.6 was released.
1 parent 8aff6c4 commit 50de3b3

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

.travis.yml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
1-
env:
2-
- TOXENV=py34
3-
- TOXENV=py33
4-
- TOXENV=py27
5-
- TOXENV=py26
6-
- TOXENV=pypy
7-
8-
install: pip install -U tox
9-
101
language: python
112

3+
cache:
4+
directories:
5+
- .tox
6+
- $HOME/.cache/pip
7+
128
matrix:
139
include:
10+
- python: 2.7
11+
env: TOXENV=py27
12+
- python: 3.3
13+
env: TOXENV=py33
14+
- python: 3.4
15+
env: TOXENV=py34
1416
- python: 3.5
1517
env: TOXENV=py35
18+
- python: 3.6
19+
env: TOXENV=py36
20+
21+
install: pip install -U tox
1622

1723
script: tox
18-
cache:
19-
directories:
20-
- .tox
21-
- $HOME/.cache/pip
2224

2325
deploy:
2426
provider: pypi

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35
2+
envlist = py27, py33, py34, py35, py36
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)