Skip to content

Commit bb6522f

Browse files
authored
fix: add Python 3.15 beta to the testing (#344)
* fix: add Python 3.15 beta to the testing * fix: add Python 3.15 beta to the testing * fix: add Python 3.15 beta to the testing
1 parent 6a2e12f commit bb6522f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [macos-latest, ubuntu-latest, windows-latest]
13-
python-version: ["3.10", "3.12", "3.14"]
13+
python-version: ["3.10", "3.12", "3.14", "3.15"]
1414
include:
1515
- os: macos-15-intel # macOS on Intel
16-
python-version: "3.14"
16+
python-version: 3.x
1717
- os: ubuntu-24.04-arm # Ubuntu on ARM
18-
python-version: "3.14"
18+
python-version: 3.x
1919
- os: windows-11-arm # Windows on ARM
20-
python-version: "3.14"
20+
python-version: 3.x
2121

2222
runs-on: ${{ matrix.os }}
2323
steps:
@@ -52,7 +52,7 @@ jobs:
5252
if: runner.os == 'Windows'
5353
run: choco install nasm
5454
- name: Run configure
55-
if: runner.os == 'Windows'
55+
if: runner.os == 'Windows' && matrix.python-version != '3.15'
5656
run: |
5757
cd node
5858
./vcbuild.bat nobuild

.github/workflows/python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [macos-15-intel, macos-latest, ubuntu-latest, windows-latest]
25-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
2626
include:
2727
- os: macos-26
2828
python-version: 3.x

0 commit comments

Comments
 (0)