mirror of https://github.com/kivy/kivy.git
fix again osx travis build (pip command not found)
This commit is contained in:
parent
3d41f1da18
commit
e12d21667a
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue