Skip to content

Commit 65f2350

Browse files
wesleydealcmccandless
authored andcommitted
Update .travis.yml (exercism#1557)
Add support for Python 3.7. Fix exercism#1552
1 parent 0c4d4f4 commit 65f2350

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

.travis.yml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,26 @@ sudo: false
22

33
language: python
44

5-
python:
6-
- 2.7
7-
- 3.4
8-
- 3.5
9-
- 3.6
10-
- nightly
11-
125
matrix:
6+
include:
7+
- python: 2.7
8+
dist: trusty
9+
sudo: false
10+
- python: 3.4
11+
dist: trusty
12+
sudo: false
13+
- python: 3.5
14+
dist: trusty
15+
sudo: false
16+
- python: 3.6
17+
dist: trusty
18+
sudo: false
19+
- python: 3.7
20+
dist: xenial
21+
sudo: true
22+
- python: nightly
23+
dist: trusty
24+
sudo: false
1325
allow_failures:
1426
- python: nightly
1527

0 commit comments

Comments
 (0)