We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ca167 commit d294b07Copy full SHA for d294b07
.github/workflows/ci.yml
@@ -264,6 +264,11 @@ jobs:
264
#Select latest xcode available on macos-13
265
sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer
266
brew update
267
+ # workaround for https://github.com/actions/setup-python/issues/577
268
+ for pkg in $(brew list | grep '^python@'); do
269
+ brew unlink "$pkg"
270
+ brew link --overwrite "$pkg"
271
+ done
272
brew upgrade
273
pip install distro pytest
274
0 commit comments