Skip to content

Commit 9ce40f2

Browse files
authored
Avoid installing deprecated Python 2 from Homebrew (swiftlang#160)
`brew install python@2` now fails for me locally due to Homebrew/homebrew-core#49796, not sure how it still runs fine on CI, probably due to caches not being cleaned up as frequently. I hope relying on system-installed Python should work fine.
1 parent b8d328a commit 9ce40f2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: utils/webassembly/ci-mac.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
set -ex
44

5-
brew install cmake ninja llvm python@2
6-
7-
# Install six for python3 migration
8-
pip2 install six
5+
brew uninstall python@2 || true
6+
brew install cmake ninja llvm
97

108
SOURCE_PATH="$( cd "$(dirname $0)/../../.." && pwd )"
119
SWIFT_PATH=$SOURCE_PATH/swift

0 commit comments

Comments
 (0)