From 4994fd4c7490dcc2d1418099846c65aaed67670d Mon Sep 17 00:00:00 2001 From: Pedram Amini Date: Wed, 26 Nov 2025 21:00:06 -0600 Subject: [PATCH] bugfix in mac app builder --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 754af98f..f4d10b7c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,6 +52,13 @@ jobs: if: matrix.platform == 'win' uses: ilammy/msvc-dev-cmd@v1 + # macOS: Setup Python 3.12 for node-gyp (Python 3.14 removed distutils) + - name: Setup Python for node-gyp + if: matrix.platform == 'mac' + uses: actions/setup-python@v5 + with: + python-version: '3.12' + - name: Install dependencies run: npm ci