Files
scikit-image/tools/travis_setup.sh
T
2014-10-11 04:58:09 -05:00

16 lines
514 B
Bash
Executable File

#!/bin/sh
set -ex
pip install wheel flake8 coveralls nose
# on Python 2.7, use the system versions of numpy, scipy, and matplotlib
# and the minimum version of cython and networkx
if [[ $TRAVIS_PYTHON_VERSION == 2.7* ]]; then
sudo apt-get install python-scipy python-matplotlib
pip install https://github.com/cython/cython/archive/0.19.2.tar.gz
pip install https://github.com/networkx/networkx/archive/networkx-1.8.tar.gz
fi
pip install -r requirements.txt $WHEELHOUSE
python check_bento_build.py