From 4974b64cbf4f54d446386a0303962d08cd518026 Mon Sep 17 00:00:00 2001 From: psi29a Date: Sun, 17 Jan 2021 15:58:43 +0000 Subject: [PATCH] Update CI/before_install.osx.sh --- CI/before_install.osx.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CI/before_install.osx.sh b/CI/before_install.osx.sh index 85434fa06..ba0ff00ca 100755 --- a/CI/before_install.osx.sh +++ b/CI/before_install.osx.sh @@ -1,5 +1,9 @@ #!/bin/sh -e +# workaround python issue on travis +HOMEBREW_NO_AUTO_UPDATE=1 brew uninstall --ignore-dependencies python@3.8 || true +HOMEBREW_NO_AUTO_UPDATE=1 brew uninstall --ignore-dependencies python@3.9 || true + # Some of these tools can come from places other than brew, so check before installing command -v ccache >/dev/null 2>&1 || brew install ccache command -v cmake >/dev/null 2>&1 || brew install cmake