From: Victor Stinner Date: Sun, 24 Sep 2017 22:45:00 +0000 (-0700) Subject: bpo-31568, Travis CI: Fix python3.5 (#3737) X-Git-Tag: v3.5.5rc1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70c630a7316f9f6063557786442e3c56502fe8ea;p=python bpo-31568, Travis CI: Fix python3.5 (#3737) Works around Travis CI bug about the python3.5 binary: https://github.com/travis-ci/travis-ci/issues/8363 --- diff --git a/.travis.yml b/.travis.yml index eb98a657b2..fed0052b54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,9 @@ matrix: # compiler here and the other to run the coverage build. Clang is preferred # in this instance for its better error messages. env: TESTING=cpython + before_install: + # work around https://github.com/travis-ci/travis-ci/issues/8363 + - pyenv global system 3.5 - os: osx language: c compiler: clang