From d8048372807d9a4b7eeed38a8bfedb09a2a15d29 Mon Sep 17 00:00:00 2001 From: Matthias Klumpp Date: Sun, 7 Jan 2018 17:31:53 +0100 Subject: [PATCH] travis: Enforce Python version Workaround for https://github.com/travis-ci/travis-ci/issues/8363 - the matrix feature does not make sense here, so having this workaround is acceptable. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ffc66da..befe666 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ d: - ldc-beta before_install: + - pyenv global system 3.6 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja python3; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pip3 install meson; fi