We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b7425 commit 8a7e226Copy full SHA for 8a7e226
.github/workflows/ci.yml
@@ -16,6 +16,11 @@ jobs:
16
- uses: actions/setup-node@v4
17
with:
18
node-version: '16'
19
+ - name: Install Python setuptools
20
+ # This is needed for Python 3.12+, since many versions of node-gyp
21
+ # are incompatible with Python 3.12+, which no-longer ships 'distutils'
22
+ # out of the box. 'setuptools' package provides 'distutils'.
23
+ run: python3 -m pip install setuptools
24
- name: Install windows-build-tools
25
if: ${{ matrix.os == 'windows-latest' }}
26
run: npm config set msvs_version 2019
0 commit comments