mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-06 05:16:40 +08:00
Do not try optional dependencies on Py3.2
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
PySide; python_version != '2.7'
|
||||
imread; python_version != '2.7' and python_version != '3.2'
|
||||
SimpleITK; python_version != '3.2' and python_version != '3.4'
|
||||
imread; python_version != '2.7'
|
||||
SimpleITK; python_version != '3.4'
|
||||
astropy
|
||||
tifffile
|
||||
imageio
|
||||
|
||||
@@ -21,7 +21,9 @@ section_end "Flake8.test"
|
||||
section "Install.optional.dependencies"
|
||||
|
||||
# Install most of the optional packages
|
||||
pip install --retries 3 -q -r ./optional_requirements.txt $WHEELHOUSE
|
||||
if [[ $PY != 3.2* ]]; then
|
||||
pip install --retries 3 -q -r ./optional_requirements.txt $WHEELHOUSE
|
||||
fi
|
||||
|
||||
# Install Qt and then update the Matplotlib settings
|
||||
if [[ $PY == 2.7* ]]; then
|
||||
|
||||
Reference in New Issue
Block a user