Skip to content

Commit 5f8bff0

Browse files
committed
Run tests against Python 3.7, rather than nightly
1 parent b17dde4 commit 5f8bff0

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
sudo: false
21
language: python
32
python:
4-
- "2.7"
5-
- "3.5"
6-
- "3.6"
7-
- "nightly"
3+
- 2.7
4+
- 3.5
5+
- 3.6
6+
# XXX https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-411073985
7+
matrix:
8+
include:
9+
- python: 3.7
10+
dist: xenial
11+
sudo: true
812
install: pip install tox-travis
913
script: tox
1014
notifications:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py35, py36
2+
envlist = py27, py35, py36, py37
33
skipsdist=True
44

55
[testenv]

0 commit comments

Comments
 (0)