Skip to content

Commit

Permalink
Still broken, let's force Python 3.11 for now
Browse files Browse the repository at this point in the history
But not on Linux, since we're using Ubuntu 18.04 that's stuck on an
older Python version already.
  • Loading branch information
ianhattendorf committed Dec 11, 2023
1 parent 7c9f895 commit d4db2e1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/rebuildElectron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ jobs:
node-version: 14
node-arch: ${{ matrix.arch }}

- name: Use Python 3.11 # node-gyp < 10 breaks with 3.12
uses: actions/setup-python@v4
with:
python-version: '3.11'

- run: npm install
- run: npm run compile
- run: node ci/prepare.js
Expand Down Expand Up @@ -165,6 +170,11 @@ jobs:
node-version: 14
node-arch: ${{ matrix.arch }}

- name: Use Python 3.11 # node-gyp < 10 breaks with 3.12
uses: actions/setup-python@v4
with:
python-version: '3.11'

- run: npm install
- run: npm run compile
- run: node ci/prepare.js
Expand Down

0 comments on commit d4db2e1

Please sign in to comment.