summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2018-07-07 16:47:11 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2018-07-07 16:47:11 -0700
commit2a2a762864d12464e5eed1650133c9617590a436 (patch)
tree31a2153f3efee91fc370210167c7f6d2b6066a42
parent05d5606a3c12afeb7d0e31b4e5b83666ac3a157c (diff)
downloadnatsort-2a2a762864d12464e5eed1650133c9617590a436.tar.gz
Add a matrix that *should* run Py 3.7.
Apparently, the ubuntu trusty distribution cannot run python 3.7, but xenial will. For 3.7 we have to specify xenial.
-rw-r--r--.travis.yml19
1 files changed, 12 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index ae012aa..f835495 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,17 @@
language: python
-python:
-- "2.7"
-- "3.4"
-- "3.5"
-- "3.6"
-
sudo: false
-dist: trusty
+matrix:
+ include:
+ - python: "2.7"
+ dist: trusty
+ - python: "3.4"
+ dist: trusty
+ - python: "3.5"
+ dist: trusty
+ - python: "3.6"
+ dist: trusty
+ - python: "3.7"
+ dist: xenial
env:
- WITH_EXTRAS="fast,icu"