From ab4b36f573c6d336dd79efa7859ed922fa00f81b Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 7 May 2024 11:57:02 -0800 Subject: [PATCH] Fix setuptools install on macOS This is erroring now with "This environment is externally managed". --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e84713f39..90f08eae4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -222,7 +222,7 @@ jobs: # next update Node we can probably remove this. For now, install # setuptools since it contains distutils. - name: Install Python utilities - run: python3 -m pip install setuptools + run: brew install python-setuptools - name: Download npm package uses: actions/download-artifact@v4