From 221ab708b956e63602387475dae7a3e1d2dad037 Mon Sep 17 00:00:00 2001 From: Noah Morrison Date: Sun, 21 Apr 2019 16:08:35 -0400 Subject: [PATCH] Cap Python to 3.6 to avoid Xenial workaround Some limitation to travis. Hopefully will be fixed soon? https://github.com/travis-ci/travis-ci/issues/9815 --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68db58b..a18fe76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,15 +9,14 @@ python: - '3.4' - '3.5' - '3.6' - - '3.7' - pypy matrix: include: - - python: 3.7 + - python: 3.6 env: - TOXENV=flake8 - - python: 3.7 + - python: 3.6 env: - PUBLISH="true" install: -- 2.47.3