Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/node-gyp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.12", "3.14", "3.15"]
python-version: ["3.11", "3.13", "3.15"]
include:
- os: macos-26-intel # macOS on Intel
python-version: 3.x
Expand Down Expand Up @@ -51,6 +51,7 @@ jobs:
pip uninstall -y gyp-next
- name: Install Node.js dependencies
run: |
npm install --global npm@12
cd node-gyp
npm install --no-progress
- name: Replace gyp in node-gyp
Expand All @@ -62,10 +63,10 @@ jobs:
if: runner.os != 'Windows'
run: |
cd node-gyp
npm test --python="${pythonLocation}/python"
npm test
- name: Run tests (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
cd node-gyp
npm run test --python="${env:pythonLocation}\\python.exe"
npm run test
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.12", "3.14", "3.15"]
python-version: ["3.11", "3.13", "3.15"]
include:
- os: macos-26-intel # macOS on Intel
python-version: 3.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
python-version: ["3.11", "3.12", "3.13", "3.14", "3.15"]
include:
- os: macos-26-intel # macOS on Intel
python-version: 3.x
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ When used as a command line utility, __gyp-next__ can also be installed with [pi
* `uv tool install gyp-next`
```
Installing to a new venv 'gyp-next'
installed package gyp-next 0.13.0, installed using Python 3.10.6
installed package gyp-next 0.13.0, installed using Python 3.14.7
These apps are now globally available
- gyp
done! ✨ 🌟 ✨
Expand Down
Loading