summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2018-07-07 17:09:44 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2018-07-07 17:09:44 -0700
commit88f5a60ec8a7026f6234bd24499407f21cf02009 (patch)
treeb223e32a26799e9b09d2b632a0e76e9586c630bd
parent05d5606a3c12afeb7d0e31b4e5b83666ac3a157c (diff)
parent637923f3cd28d554bcb3152f8ba667f66c65cc0d (diff)
downloadnatsort-88f5a60ec8a7026f6234bd24499407f21cf02009.tar.gz
Merge branch 'travis-py37'
It was important to me to get CI running on Python 3.7 before I made a fully Python 3.7 compatible release as requested in issue #62.
-rw-r--r--.travis.yml61
1 files changed, 42 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml
index ae012aa..d7b0d5d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,23 +1,46 @@
language: python
-python:
-- "2.7"
-- "3.4"
-- "3.5"
-- "3.6"
-
-sudo: false
-dist: trusty
-
-env:
-- WITH_EXTRAS="fast,icu"
-- WITH_EXTRAS=""
-
-addons:
- apt:
- packages:
- - libicu-dev
- - language-pack-de
- - language-pack-en
+matrix:
+ include:
+ - python: "2.7"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS=""
+ - python: "2.7"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS="fast,icu"
+ addons:
+ apt:
+ packages:
+ - libicu-dev
+ - language-pack-de
+ - language-pack-en
+ - python: "3.4"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS=""
+ - python: "3.5"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS=""
+ - python: "3.6"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS=""
+ - python: "3.6"
+ dist: trusty
+ sudo: false
+ env: WITH_EXTRAS="fast,icu"
+ addons:
+ apt:
+ packages:
+ - libicu-dev
+ - language-pack-de
+ - language-pack-en
+ - python: "3.7"
+ dist: xenial
+ sudo: true
+ env: WITH_EXTRAS=""
install:
- pip install -U pip