Skip to content

Commit

Permalink
Fix Python compatibility in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Nov 6, 2023
1 parent e70d4c2 commit 3b1a6f2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -42,6 +42,12 @@ jobs:
with:
node-version: 14
architecture: ${{ matrix.arch }}
# Temporary fix for https://github.com/nodejs/node-gyp/issues/2869
# TODO: instead bump node-gyp to >= 10.0.0 (drops Node.js < 16.14)
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install
run: npm install --ignore-scripts
- name: Prebuild
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/smoke.yml
Expand Up @@ -43,6 +43,12 @@ jobs:
with:
node-version: 14
architecture: ${{ matrix.arch }}
# Temporary fix for https://github.com/nodejs/node-gyp/issues/2869
# TODO: instead bump node-gyp to >= 10.0.0 (drops Node.js < 16.14)
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install
run: npm install --ignore-scripts
- name: Prebuild
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -25,6 +25,12 @@ jobs:
with:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.arch }}
# Temporary fix for https://github.com/nodejs/node-gyp/issues/2869
# TODO: instead bump node-gyp to >= 10.0.0 (drops Node.js < 16.14)
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install
run: npm install
- name: Test
Expand Down

0 comments on commit 3b1a6f2

Please sign in to comment.