From b42bfff60ecee7c0ae3e90dc63bd558f04eb3ab6 Mon Sep 17 00:00:00 2001 From: Linus Jahn Date: Sat, 26 Dec 2020 21:34:03 +0100 Subject: github-ci: macOS: Fix python installation --- tests/travis/install-build-depends | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/travis/install-build-depends b/tests/travis/install-build-depends index 0a4497a0..1522ad42 100755 --- a/tests/travis/install-build-depends +++ b/tests/travis/install-build-depends @@ -3,8 +3,9 @@ set -e if [ "$(uname -s)" = "Darwin" ]; then brew update - brew unlink python@3.8 - brew install python@3.9 + brew unlink python@3 + brew install python@3 || true + brew link --overwrite python@3 case "$CONFIG" in full*) -- cgit v1.2.3