Skip to content

Commit c7a1bdf

Browse files
committed
tools: update gyp-next to v0.10.1
1 parent 2a871df commit c7a1bdf

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

tools/gyp/.github/workflows/Python_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
max-parallel: 8
1212
matrix:
1313
os: [macos-latest, ubuntu-latest] # , windows-latest]
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python ${{ matrix.python-version }}

tools/gyp/.github/workflows/node-gyp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [macos-latest, ubuntu-latest, windows-latest]
11-
python: [3.6, 3.9]
11+
python: ["3.6", "3.10"]
1212

1313
runs-on: ${{ matrix.os }}
1414
steps:

tools/gyp/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### [0.10.1](https://www.github.com/nodejs/gyp-next/compare/v0.10.0...v0.10.1) (2021-11-24)
4+
5+
6+
### Bug Fixes
7+
8+
* **make:** only generate makefile for multiple toolsets if requested ([#133](https://www.github.com/nodejs/gyp-next/issues/133)) ([f463a77](https://www.github.com/nodejs/gyp-next/commit/f463a77705973289ea38fec1b244c922ac438e26))
9+
310
## [0.10.0](https://www.github.com/nodejs/gyp-next/compare/v0.9.6...v0.10.0) (2021-08-26)
411

512

tools/gyp/pylib/gyp/generator/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
}
5151

5252
# Make supports multiple toolsets
53-
generator_supports_multiple_toolsets = True
53+
generator_supports_multiple_toolsets = gyp.common.CrossCompileRequested()
5454

5555
# Request sorted dependencies in the order from dependents to dependencies.
5656
generator_wants_sorted_dependencies = False

tools/gyp/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="gyp-next",
18-
version="0.10.0",
18+
version="0.10.1",
1919
description="A fork of the GYP build system for use in the Node.js projects",
2020
long_description=long_description,
2121
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)