Fix brew python upgrade errors in Mac CI

brew unlink python then brew force link python 3.10 & 3.11
This commit is contained in:
Jake Turner
2023-01-12 05:51:28 +00:00
committed by Baldur Karlsson
parent 3e839fc5e9
commit 359e1a4bed
+7 -2
View File
@@ -307,8 +307,13 @@ jobs:
- name: Install Homebrew dependencies
run: |
brew update || true
brew install lftp automake pcre
brew install --overwrite qt5
brew unlink python
brew link --overwrite --force python
brew unlink python@3.10
brew link --overwrite --force python@3.10
brew unlink python@3.11
brew link --overwrite --force python@3.11
brew install --overwrite lftp automake pcre qt5
brew link --overwrite --force qt5
- name: Build
run: |