mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-07 11:12:35 +08:00
Merge pull request #1275 from blink1073/use-wheelhouse-simpleitk
Do not try and install SimpleITK on Py3.2 or 3.4
This commit is contained in:
@@ -33,8 +33,12 @@ if [[ $TRAVIS_PYTHON_VERSION != 3.2 ]]; then
|
||||
pip install -q imread
|
||||
fi
|
||||
|
||||
# Install SimpleITK from wheelhouse if available
|
||||
pip install -q SimpleITK $WHEELHOUSE; true
|
||||
# Install SimpleITK from wheelhouse if available (not 3.2 or 3.4)
|
||||
if [[ $TRAVIS_PYTHON_VERSION =~ 3\.[24] ]]; then
|
||||
echo "SimpleITK unavailable on $TRAVIS_PYTHON_VERSION"
|
||||
else
|
||||
pip install -q SimpleITK $WHEELHOUSE
|
||||
fi
|
||||
|
||||
sudo apt-get install -q libfreeimage3
|
||||
pip install -q astropy $WHEELHOUSE
|
||||
|
||||
Reference in New Issue
Block a user