Do not try optional dependencies on Py3.2

This commit is contained in:
Steven Silvester
2015-09-04 08:29:52 -05:00
parent 605ab95221
commit 8d04db3bec
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -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
+3 -1
View File
@@ -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