diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2017-09-21 13:23:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-21 13:23:42 +0200 |
| commit | 7db3acd2df38508e107209c912ac0b5ce2663f9c (patch) | |
| tree | 499f0aeadda248781e7c88355030d7d539f03979 /travis/before_install.sh | |
| parent | f73859b91a20ae6299dcde08b2327b241be8226f (diff) | |
| download | PROJ-7db3acd2df38508e107209c912ac0b5ce2663f9c.tar.gz PROJ-7db3acd2df38508e107209c912ac0b5ce2663f9c.zip | |
Use Python2 in favour of Python3 which behaves inconsistenly on Travis (#573)
Diffstat (limited to 'travis/before_install.sh')
| -rwxr-xr-x | travis/before_install.sh | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/travis/before_install.sh b/travis/before_install.sh index 1404eae3..249cb591 100755 --- a/travis/before_install.sh +++ b/travis/before_install.sh @@ -5,6 +5,16 @@ # 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.5 -pyenv versions # a bit of debug info +# 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 |
