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.
brew upgrade
1 parent 6cb8165 commit a99c61bCopy full SHA for a99c61b
.ci-macosx.sh
@@ -1,12 +1,27 @@
1
#!/bin/sh
2
3
-set -e
+set -ex
4
5
sw_vers
6
system_profiler SPSoftwareDataType
7
uname -a
8
9
brew update
10
+
11
+# homebrew fails to upgrade python due to unlinking failure
12
+# (cf. https://github.com/actions/setup-python/issues/577 )
13
+rm -f /usr/local/bin/2to3
14
+rm -f /usr/local/bin/idle3
15
+rm -f /usr/local/bin/pydoc3
16
+rm -f /usr/local/bin/python3
17
+rm -f /usr/local/bin/python3-config
18
+rm -f /usr/local/bin/2to3-3.11
19
+rm -f /usr/local/bin/idle3.11
20
+rm -f /usr/local/bin/pydoc3.11
21
+rm -f /usr/local/bin/python3.11
22
+rm -f /usr/local/bin/python3.11-config
23
+brew upgrade
24
25
brew install pkg-config
26
brew install opam
27
brew install libev
0 commit comments