From a8b88d44dff8d976fd7094feb78addd73ed90805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com> Date: Sun, 4 Nov 2018 23:55:10 +0100 Subject: [PATCH] Add Python 3.7 to Travis --- .travis.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2a3276..f59f943 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,17 @@ sudo: false language: python -python: - - "2.7" - - "3.4" - - "3.5" - - "3.6" + +matrix: + include: + - python: 2.7 + - python: 3.4 + - python: 3.5 + - python: 3.6 + - python: 3.7 + dist: xenial + sudo: true + # Per https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-426312699 install: - python setup.py install -- GitLab