Skip to content

Commit 8ff231f

Browse files
committed
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.
1 parent 8aff6c4 commit 8ff231f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.travis.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
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.4
13+
env: TOXENV=py34
1414
- python: 3.5
1515
env: TOXENV=py35
16+
- python: 3.6
17+
env: TOXENV=py36
18+
19+
install: pip install -U tox
1620

1721
script: tox
18-
cache:
19-
directories:
20-
- .tox
21-
- $HOME/.cache/pip
2222

2323
deploy:
2424
provider: pypi

tox.ini

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

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)