We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7e1c50 commit c910412Copy full SHA for c910412
2 files changed
.github/workflows/houdini.yml
@@ -161,6 +161,7 @@ jobs:
161
- name: install_deps
162
run: |
163
# Remove Python3 symlinks in /usr/local/bin as workaround to brew update issues
164
+ # https://github.com/actions/setup-python/issues/577
165
rm /usr/local/bin/2to3* || :
166
rm /usr/local/bin/idle3* || :
167
rm /usr/local/bin/pydoc* || :
ci/install_macos.sh
@@ -2,6 +2,13 @@
2
3
set -x
4
5
+# Remove Python3 symlinks in /usr/local/bin as workaround to brew update issues
6
+# https://github.com/actions/setup-python/issues/577
7
+rm /usr/local/bin/2to3* || :
8
+rm /usr/local/bin/idle3* || :
9
+rm /usr/local/bin/pydoc* || :
10
+rm /usr/local/bin/python3* || :
11
+
12
brew update
13
brew install bash gnu-getopt # for CI scripts
14
brew install boost
0 commit comments