From e12d21667a7279ba3017af9aa0df3aa7441dd489 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Mon, 21 May 2018 17:36:36 +0200 Subject: [PATCH] fix again osx travis build (pip command not found) --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ebd3436ab..d7408d37f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,9 +80,9 @@ install: if [ "${PY}" == "3" ]; then curl -O -L https://www.python.org/ftp/python/3.5.2/python-3.5.2-macosx10.6.pkg; sudo installer -package python-3.5.2-macosx10.6.pkg -target /; - pip3 install --upgrade --user cython pillow nose mock docutils; + python3 -m pip install --upgrade --user cython pillow nose mock docutils; else - pip install --upgrade --user cython pillow nose mock docutils; + python -m pip install --upgrade --user cython pillow nose mock docutils; fi; fi;