Skip to content

Commit a21e0e8

Browse files
Use matrix in travis config
This is needed to support python versions beyond 3.4
1 parent c4bea15 commit a21e0e8

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

.travis.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
language: python
2-
env:
3-
- TOXENV=py26
4-
- TOXENV=py27
5-
- TOXENV=py33
6-
- TOXENV=py34
7-
- TOXENV=py35
8-
- TOXENV=py36
2+
3+
matrix:
4+
include:
5+
- python: 2.6
6+
env: TOXENV=py26
7+
- python: 2.7
8+
env: TOXENV=py27
9+
- python: 3.3
10+
env: TOXENV=py33
11+
- python: 3.4
12+
env: TOXENV=py34
13+
- python: 3.5
14+
env: TOXENV=py35
15+
- python: 3.6
16+
env: TOXENV=py36
17+
918
sudo: false
1019
install:
1120
- travis_retry pip install tox

0 commit comments

Comments
 (0)