From 94dab0d30e4984da1fc4a0f7c6d08b274264f2c3 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 13 Dec 2014 06:22:39 -0600 Subject: [PATCH] Fix boolean logic for SimpleITK install and add warning --- tools/travis_install_optional.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/travis_install_optional.sh b/tools/travis_install_optional.sh index 9da37bb9..989b9d95 100755 --- a/tools/travis_install_optional.sh +++ b/tools/travis_install_optional.sh @@ -35,6 +35,8 @@ fi # 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