From f93f4fa7c7c2b6496275c26c4305cedb01ca9994 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Thu, 12 Jul 2018 21:33:12 +0200 Subject: [PATCH] Travis CI Python versions; install fix --- .travis.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f71e4c64..c6f2536b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,16 +5,24 @@ os: - linux env: global: - - NEWEST_PYTHON=3.7 + - NEWEST_PYTHON=3.7-dev # Final Python 3.7 no available as of now python: + # + - 2.7 - - 3.4 - 3.5 + + # Python 3.4 fails installing packages + # + # - 3.4 + - 3.6 - - 3.7 + - 3.7-dev # Final Python 3.7 no available as of now - pypy + # pypy3 currently fails because of a Flask issue # - pypy3 + cache: pip matrix: include: @@ -45,10 +53,10 @@ matrix: install: - | if [[ $TRAVIS_OS_NAME == 'osx' ]]; then - sudo pip install tox if [[ -n "$BREW_PYTHON_PACKAGE" ]]; then brew install "$BREW_PYTHON_PACKAGE" fi + sudo pip install tox fi script: - |