Skip to content

Commit 55c16ba

Browse files
committed
Travis CI: add Python 3.7 build target (#416)
Also set up a build matrix. Closes #416. Change-Id: I19c32c869fcf56650ffc72a42c8605a44c23c94b
1 parent d9ec7c4 commit 55c16ba

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.travis.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1+
os: linux
12
language: python
2-
python:
3-
- '2.7'
4-
- '3.4'
5-
- '3.5'
6-
- '3.6'
3+
matrix:
4+
include:
5+
- dist: bionic
6+
python: 2.7
7+
- dist: xenial
8+
python: 3.4
9+
- dist: xenial
10+
python: 3.5
11+
- dist: bionic
12+
python: 3.6
13+
- dist: bionic
14+
python: 3.7
715
install:
816
- pip install coverage
917
- pip install .

0 commit comments

Comments
 (0)