blob: 249cb59173f610bd9c7ba98e7041f0df081376b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/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
|