From 93b9ddceea1023a6c83f91daaea29c121106727d Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Fri, 3 Jan 2025 17:26:39 -0600 Subject: [PATCH] Install latest node-gyp --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09f85206c..b3e4e462f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,8 +27,11 @@ jobs: - name: Install Python dependencies if: matrix.os == 'macos-latest' - run: | - python -m pip install setuptools + run: python -m pip install setuptools + + - name: Install latest node-gyp + if: matrix.os == 'macos-latest' + run: npm i -g node-gyp - name: Install dependencies if: |