From 9cbe2621ed2af6db2928c2a1369d970de6e1c93b Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 3 Mar 2019 12:58:40 +0100 Subject: [PATCH] Travis: rework build matrix Apparently python 3.7 is not available on the default Trusty distribution, so let's add Xenial for the newer Python versions. More builds! --- .travis.yml | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 75ff838..0caebca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,22 @@ language: python -# let's test as many versions as we can! -python: - - "2.7" - - "3.2" - - "3.3" - - "3.4" - - "3.5" - - "3.6" - - "3.7" - - "nightly" +matrix: + include: + - dist: trusty + python: + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "3.5" + - "3.6" + - "nightly" + - dist: xenial + python: + - "2.7" + - "3.6" + - "3.7" + - "nightly" # we don't need any python dependencies: install: true -- 2.39.2