From 4e07175bebf0946bbdd9b533fabc368c5757b1a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Chwalisz?= Date: Sun, 24 Feb 2019 19:22:03 +0100 Subject: [PATCH] fix travis python 3.7 support travis-ci/travis-ci#9815 --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4702843..d9549b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,12 @@ language: python -python: - - "3.4" - - "3.5" - - "3.6" - - "3.7" +matrix: + include: + - python: 3.4 + - python: 3.5 + - python: 3.6 + - python: 3.7 + dist: xenial + sudo: true cache: pip: true