Skip to content

Commit

Permalink
Installed setuptools in CI workflow
Browse files Browse the repository at this point in the history
- Python 3.12 no longer ships with this and GHA CI has updated to 3.12,
  which breaks our build scripts
- this should fix that until we can update node-gyp
  • Loading branch information
daniellockyer committed Dec 23, 2023
1 parent 10f38fe commit 080c0d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -57,6 +57,10 @@ jobs:
if: matrix.os == 'macos-m1'
run: npm install -g yarn

- name: Add setuptools for Python 3.12 (temp)
if: matrix.os != 'macos-m1'
run: pip install setuptools

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3
if: contains(matrix.os, 'windows')
Expand Down

0 comments on commit 080c0d1

Please sign in to comment.