#!/bin/bash # All platform-specific before_install scripts starts by running this # "global" before_install script. # Specify which version of python to use. The default python to use on Travis # can vary from platform to platform, so we use pyenv to make sure we use # a version that works for the complete build processs. (Not in use at the moment, # since the pyenv setup on Travis is not consistent across platforms and partly # broken as well) #pyenv global system 3.5 #pyenv versions # a bit of debug info # What is the current python setup? which python python --version python3 --version which pip pip --version