Skip to content

Commit 94a94cb

Browse files
committed
specify the correct distros for each python version
1 parent 8e40792 commit 94a94cb

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.travis.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
language: python
2-
dist: bionic
3-
python:
4-
- "3.5"
5-
- "3.6"
6-
- "3.7"
2+
matrix:
3+
include:
4+
- name: "Python 3.5"
5+
dist: xenial
6+
python: 3.5
7+
- name: "Python 3.6"
8+
dist: bionic
9+
python: 3.6
10+
- name: "Python 3.7"
11+
dist: cosmic
12+
python: 3.7
713
install:
814
- pip install .
915
script:

0 commit comments

Comments
 (0)