summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2020-07-16 13:07:11 -0700
committerGitHub <noreply@github.com>2020-07-16 13:07:11 -0700
commit968e4af2e27b2aeb028ad2cd224c1d5f9f6b84a1 (patch)
treef93fa4dd984ac402977ce4a8057c9262b0324f80 /tools
parent02097456ce2f8b164965e1ac3cb5ec14fcdf6d27 (diff)
downloadnetworkx-968e4af2e27b2aeb028ad2cd224c1d5f9f6b84a1.tar.gz
Install Python after updating brew (#4079)
MAINT: update CI configuration
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis/osx_install.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/travis/osx_install.sh b/tools/travis/osx_install.sh
index 5b0f47b1..29572899 100755
--- a/tools/travis/osx_install.sh
+++ b/tools/travis/osx_install.sh
@@ -3,17 +3,17 @@ set -ex
section "OSX install section"
-# set up Python and virtualenv on OSX
-git clone https://github.com/matthew-brett/multibuild
-source multibuild/osx_utils.sh
-get_macpython_environment $TRAVIS_PYTHON_VERSION venv
-
if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
brew install graphviz
dot -V
sed -i "" 's/^gdal.*/gdal==3.1.2/' requirements/extras.txt
fi
+# set up Python and virtualenv on OSX
+git clone https://github.com/matthew-brett/multibuild
+source multibuild/osx_utils.sh
+get_macpython_environment $TRAVIS_PYTHON_VERSION venv
+
section_end "OSX install section"
set +ex