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 7c25ce5 commit f523ae2Copy full SHA for f523ae2
.github/workflows/rc.yml
@@ -228,11 +228,12 @@ jobs:
228
# Homebrew's python@XXX is updated without "--overwrite", it
229
# tries to replace /usr/local/bin/2to3 and so on and causes
230
# a conflict error.
231
+ set -x
232
brew update
- for python_package in $(brew list | grep python@); do
233
+ for python_package in $(brew list | grep python@ | sort -r); do
234
brew install --overwrite ${python_package}
235
done
- brew install --overwrite python
236
+ brew install --overwrite python3
237
238
if [ "$(uname -m)" = "arm64" ]; then
239
# pkg-config formula is deprecated but it's still installed
0 commit comments