Skip to content

Commit

Permalink
Fix python installation i guess
Browse files Browse the repository at this point in the history
  • Loading branch information
M0REKZ committed Jun 27, 2023
1 parent f7cc6d2 commit 29ce955
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,22 @@ jobs:
runs-on: macos-latest

steps:

# Homebrew fails to upgrade python due to unlinking failure
# https://github.com/actions/setup-python/issues/577
- name: Fix python homebrew installation
run: |
rm -f /usr/local/bin/2to3
rm -f /usr/local/bin/idle3
rm -f /usr/local/bin/pydoc3
rm -f /usr/local/bin/python3
rm -f /usr/local/bin/python3-config
rm -f /usr/local/bin/2to3-3.11
rm -f /usr/local/bin/idle3.11
rm -f /usr/local/bin/pydoc3.11
rm -f /usr/local/bin/python3.11
rm -f /usr/local/bin/python3.11-config
- name: Install macOS Tools
run: |
brew update
Expand Down

0 comments on commit 29ce955

Please sign in to comment.