From 0b1223653762c82277c03fa514b0d3681e10b574 Mon Sep 17 00:00:00 2001 From: Joe Moore Date: Sat, 18 May 2019 14:35:10 -0400 Subject: [PATCH] Switch to explicit matrix build --- .travis.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ddc5439..7120ada6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,15 @@ sudo: false -dist: xenial language: python -python: - - "3.4" - - "3.5" - - "3.6" - - "3.7" -install: pip install tox-travis +install: pip3 install tox-travis script: tox - +matrix: + include: + - os: "linux" + dist: "xenial" + python: "3.5" + - os: "linux" + dist: "xenial" + python: "3.6" + - os: "linux" + dist: "xenial" + python: "3.7"