Skip to content

Commit 05ad184

Browse files
committedApr 9, 2020
Use correct Python version on Travis
1 parent d1b5273 commit 05ad184

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
 

‎.travis.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
sudo: false
44
language: python
5-
python: 3.8
6-
env:
7-
- TOX_ENV=py35
8-
- TOX_ENV=py36
9-
- TOX_ENV=py37
10-
- TOX_ENV=py38
5+
6+
matrix:
7+
- env: TOX_ENV=py35
8+
python: 3.5
9+
- env: TOX_ENV=py36
10+
python: 3.6
11+
- env: TOX_ENV=py37
12+
python: 3.7
13+
- env: TOX_ENV=py38
14+
python: 3.8
1115

1216
script: tox -e $TOX_ENV
1317

0 commit comments

Comments
 (0)
Please sign in to comment.