1
0
mirror of https://github.com/docker/compose.git synced 2025-04-08 17:05:13 +02:00

Upgrade pip on osx

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2016-06-30 18:40:39 -04:00
parent 3d20e25bf8
commit 3d0a1de023
2 changed files with 3 additions and 2 deletions
script/travis

@ -6,5 +6,5 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
tox -e py27,py34 -- tests/unit
else
# TODO: we could also install py34 and test against it
python -m tox -e py27 -- tests/unit
tox -e py27 -- tests/unit
fi

@ -5,5 +5,6 @@ set -ex
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip install tox==2.1.1
else
pip install --user tox==2.1.1
sudo pip install --upgrade pip tox==2.1.1 virtualenv
pip --version
fi