Skip to content

Commit

Permalink
More faffing with PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Oct 13, 2020
1 parent 6176e60 commit dd49dc3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions travis-install
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ set -e

if [ "$TRAVIS_PYTHON_VERSION" = "3.6" ]; then
pip install https://github.com/ome/zeroc-ice-py-manylinux/releases/download/0.3.0/zeroc_ice-3.6.5-cp36-cp36m-manylinux2014_x86_64.whl
sudo /usr/bin/pip2.7 install https://github.com/ome/zeroc-ice-py-manylinux/releases/download/0.2.0/zeroc_ice-3.6.5-cp27-cp27mu-manylinux2010_x86_64.whl
/usr/bin/python2.7 -c 'import Ice; print(Ice.stringVersion())'
python3 -c 'import Ice; print(Ice.stringVersion())'
elif [ "${TRAVIS_PYTHON_VERSION:-}" = "2.7" ]; then
sudo /usr/bin/pip2.7 install https://github.com/ome/zeroc-ice-py-manylinux/releases/download/0.2.0/zeroc_ice-3.6.5-cp27-cp27mu-manylinux2010_x86_64.whl
/usr/bin/python2.7 -c 'import Ice; print(Ice.stringVersion())'
else
echo "Unexpected Python version: ${TRAVIS_PYTHON_VERSION:-}"
fi
sudo pip2.7 install https://github.com/ome/zeroc-ice-py-manylinux/releases/download/0.2.0/zeroc_ice-3.6.5-cp27-cp27mu-manylinux2010_x86_64.whl
python2.7 -c 'import Ice; print(Ice.stringVersion())'

0 comments on commit dd49dc3

Please sign in to comment.