summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2018-07-07 16:57:29 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2018-07-07 16:57:29 -0700
commit41e3e4fb63dd7ccca0e12055f66a4894a6ec3f41 (patch)
treee2c8ef6c898d87242038abfd81d0059999ee083f
parent2a2a762864d12464e5eed1650133c9617590a436 (diff)
downloadnatsort-41e3e4fb63dd7ccca0e12055f66a4894a6ec3f41.tar.gz
Looks like .travis.yml just got more verbose.
It seems like once one introduces a matrix, implicit matrices no longer work. So I now have to spell out the with and without extras stuff.
-rw-r--r--.travis.yml52
1 files changed, 40 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index f835495..ee21b41 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,28 +1,56 @@
language: python
-sudo: false
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
-
-env:
-- WITH_EXTRAS="fast,icu"
-- WITH_EXTRAS=""
-
-addons:
- apt:
- packages:
- - libicu-dev
- - language-pack-de
- - language-pack-en
+ sudo: true
+ env: WITH_EXTRAS=""
+ - python: "3.7"
+ dist: xenial
+ sudo: true
+ env: WITH_EXTRAS="fast,icu"
+ addons:
+ apt:
+ packages:
+ - libicu-dev
+ - language-pack-de
+ - language-pack-en
install:
- pip install -U pip