Update .travis.yml

This commit is contained in:
Peter Badida 2017-05-15 13:08:20 +02:00 committed by Gabriel Pettier
parent 642e029a8c
commit 3d41f1da18
1 changed files with 2 additions and 4 deletions

View File

@ -80,11 +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 /;
python3 get-pip.py --user;
python3 -m pip install --upgrade --user cython pillow nose mock;
pip3 install --upgrade --user cython pillow nose mock docutils;
else
python get-pip.py --user;
python -m pip install --upgrade --user cython pillow nose mock;
pip install --upgrade --user cython pillow nose mock docutils;
fi;
fi;