We install python 2.7.6 using pyenv. This should help us catch issues like this earlier https://github.com/fonttools/fonttools/issues/993
10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
if [[ -n "$PYENV_VERSION" ]]; then
|
|
wget https://github.com/praekeltfoundation/travis-pyenv/releases/download/${TRAVIS_PYENV_VERSION}/setup-pyenv.sh
|
|
source setup-pyenv.sh
|
|
fi
|