From 000c41038d350a20cd550e3867a847a527c7a2fa Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Tue, 20 Aug 2024 13:17:21 +0200 Subject: [PATCH] chore: Update macOS alpha build workflow to install Python 3.11 and add watchman --- .github/workflows/macos-alpha-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos-alpha-build.yml b/.github/workflows/macos-alpha-build.yml index 7b85e97d8..a8ca16ff3 100644 --- a/.github/workflows/macos-alpha-build.yml +++ b/.github/workflows/macos-alpha-build.yml @@ -71,12 +71,13 @@ jobs: - name: Setup run: | # completly uninstall python3 and python3.12 - brew uninstall --ignore-dependencies python3 -f + brew uninstall --ignore-dependencies python3.12 -f export PATH="$(python3 -m site --user-base)/bin":$PATH python3 -m pip install --user mercurial brew install python@3.11 + brew install watchman - name: Bootstrap run: |