From b2b7bcb5afe4b28a069ba299a55222c8ce0dfe29 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 13 Nov 2023 12:03:37 +0000 Subject: [PATCH] Workaround for macos-latest switching to Python 3.12 (#1328) --- .github/workflows/build_macos.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_macos.yaml b/.github/workflows/build_macos.yaml index 615405a..4087d53 100644 --- a/.github/workflows/build_macos.yaml +++ b/.github/workflows/build_macos.yaml @@ -67,7 +67,10 @@ jobs: - name: Build Natives if: steps.cache.outputs.cache-hit != 'true' - run: "yarn build:native:universal" + run: | + # Python 3.12 drops distutils which keytar relies on + pip3 install setuptools + yarn build:native:universal - name: "[Nightly] Resolve version" id: nightly