From 550f62630157176dd66720a3ea01aca8e0afd789 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Mon, 11 Mar 2024 08:09:46 +0100 Subject: [PATCH] hotfix for gh#actions/setup-python/issues/577 --- .github/workflows/python-cibuildwheel.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index 2c26ec245..e507b6f87 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -75,6 +75,12 @@ jobs: - name: install mac dependencies if: ${{ runner.os == 'macOS' }} run: | + # Temporary fix, see https://github.com/actions/setup-python/issues/577 + rm /usr/local/bin/2to3 || true + rm /usr/local/bin/idle3 || true + rm /usr/local/bin/pydoc3 || true + rm /usr/local/bin/python3 || true + rm /usr/local/bin/python3-config || true brew update && \ brew install ccache