Skip to content

Commit d5bb200

Browse files
committed
Fix travis build after change from "precise" to "trusty"
Travis recently has changed its dist from "precise" to "trusty", so some Python versions are no longer installed by default
1 parent bda07d8 commit d5bb200

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@ env:
1111
- TOXENV=coveralls
1212
# note: please use "tox --listenvs" to populate the build matrix below
1313
- TOXENV=linting
14-
- TOXENV=py26
1514
- TOXENV=py27
16-
- TOXENV=py33
1715
- TOXENV=py34
1816
- TOXENV=py35
19-
- TOXENV=pypy
2017
- TOXENV=py27-pexpect
2118
- TOXENV=py27-xdist
2219
- TOXENV=py27-trial
@@ -32,6 +29,12 @@ env:
3229

3330
matrix:
3431
include:
32+
- env: TOXENV=py26
33+
python: '2.6'
34+
- env: TOXENV=py33
35+
python: '3.3'
36+
- env: TOXENV=pypy
37+
python: 'pypy-5.4'
3538
- env: TOXENV=py36
3639
python: '3.6'
3740
- env: TOXENV=py37

0 commit comments

Comments
 (0)