From 70c630a7316f9f6063557786442e3c56502fe8ea Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 24 Sep 2017 15:45:00 -0700 Subject: [PATCH] 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 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.50.1