summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2020-09-10 13:59:26 -0700
committerGitHub <noreply@github.com>2020-09-10 13:59:26 -0700
commit3c35f236d67e564f81c354947fd3a0640067b889 (patch)
tree28397a2bd7c2511c89eeaffc1e86bb01d3861ca7 /tools
parent2bfdee687d0db533555384f92ce3670d47c45aec (diff)
downloadnetworkx-3c35f236d67e564f81c354947fd3a0640067b889.tar.gz
Test mac osx via actions (#4201)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis/osx_install.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/travis/osx_install.sh b/tools/travis/osx_install.sh
deleted file mode 100755
index 8fc5d3a9..00000000
--- a/tools/travis/osx_install.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-set -ex
-
-section "OSX install section"
-
-if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
- brew install graphviz
- dot -V
-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
-
-if [[ "${OPTIONAL_DEPS}" == 1 ]]; then
- pip install gdal==3.1.2
-fi
-
-section_end "OSX install section"
-
-set +ex