pyenv install (#713)

```
Unfortunately, since our latest image update, Python 3.5 doesn't come pre-installed anymore. Hence, you will have to install it via `pyenv` as a first step e.g.

before_install
  - pyenv install 3.5.0 && pyenv global 3.5.0

support@travis-ci.com
```
This commit is contained in:
Christopher Dunn 2017-12-20 14:24:51 -06:00 committed by GitHub
parent 9079422ac1
commit 41ff85f443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@
# http://stackoverflow.com/questions/22111549/travis-ci-with-clang-3-4-and-c11/30925448#30925448
# to allow C++11, though we are not yet building with -std=c++11
before_install: pyenv global 3.5
before_install: pyenv install 3.5.4 && pyenv global 3.5.4
install:
- if [[ $TRAVIS_OS_NAME == osx ]]; then
brew update;