Skip to content

Commit 3b43801

Browse files
authored
Travis CI: Add Python 3.7 to the testing
Also, [Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration).
1 parent e41ef89 commit 3b43801

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
language: python
22

3-
sudo: false
4-
53
python:
64
- '3.5'
75
- '2.7'
86
- '2.6'
97
- '3.4'
108
- '3.6'
119

10+
matrix:
11+
include:
12+
- python: '3.7'
13+
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
14+
1215
install:
1316
- pip install -e .
1417
- pip install -r requirements-dev.txt

0 commit comments

Comments
 (0)