From d57fa78169e9290da95a3d8bda7ebdb65ad03a4b Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Thu, 2 Jan 2020 14:45:53 -0700 Subject: [PATCH] ci: Unlink python@2 for macOS Dependency resolution resulting in installation of 'python' will grab python@3 which conflicts with existing python@2 installation's symlinks. Unlink python@2 for now so python@3 can install cleanly. --- .github/workflows/build_macos.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 20d080fc5d..caf9d83898 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -27,6 +27,7 @@ jobs: - name: Install Dependencies run: | brew update + brew unlink python@2 brew install \ glib \ pixman \