blob: 12f2edbaad5fece80adcb35bd209bcf85aae8e55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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.
pyenv global system 3.4
pyenv versions # a bit of debug info
|