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 76aaf99 commit 00cf875Copy full SHA for 00cf875
.github/workflows/nodejs.yml
@@ -17,6 +17,11 @@ jobs:
17
uses: actions/setup-node@v1
18
with:
19
node-version: ${{ matrix.node-version }}
20
+ # Default Python (3.12) doesn't have support for distutils
21
+ # https://github.com/nodejs/node-gyp/issues/2869
22
+ - uses: actions/setup-python@v4
23
+ with:
24
+ python-version: '3.11'
25
- name: Install Dependencies
26
run: |
27
npm config set node_gyp "$PWD/node_modules/node-gyp/bin/node-gyp.js"
package.json
@@ -61,6 +61,6 @@
61
"typescript": "^4.0.3"
62
},
63
"dependencies": {
64
- "whatwg-url": "^11.0.0"
+ "whatwg-url": "^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0"
65
}
66
0 commit comments