Skip to content

Commit 0da2e01

Browse files
authored
gyp: update gyp to v0.8.1 (#2355)
PR-URL: #2355 Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Christian Clauss <[email protected]>
1 parent 0093ec8 commit 0da2e01

23 files changed

+31
-24
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
repository: nodejs/node-gyp
2121
path: node-gyp
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v2
2323
with:
2424
node-version: 14.x
2525
- uses: actions/setup-python@v2

gyp/.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release-please:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: GoogleCloudPlatform/release-please-action@v2.5.6
11+
- uses: GoogleCloudPlatform/release-please-action@v2
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414
release-type: python

gyp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### [0.8.1](https://www.github.com/nodejs/gyp-next/compare/v0.8.0...v0.8.1) (2021-02-18)
4+
5+
6+
### Bug Fixes
7+
8+
* update shebang lines from python to python3 ([#94](https://www.github.com/nodejs/gyp-next/issues/94)) ([a1b0d41](https://www.github.com/nodejs/gyp-next/commit/a1b0d4171a8049a4ab7a614202063dec332f2df4))
9+
310
## [0.8.0](https://www.github.com/nodejs/gyp-next/compare/v0.7.0...v0.8.0) (2021-01-15)
411

512

gyp/gyp_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2009 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

gyp/pylib/gyp/MSVSSettings.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@
2222
_msvs_validators = {}
2323
_msbuild_validators = {}
2424

25+
2526
# A dictionary of settings converters. The key is the tool name, the value is
2627
# a dictionary mapping setting names to conversion functions.
2728
_msvs_to_msbuild_converters = {}
2829

30+
2931
# Tool name mapping from MSVS to MSBuild.
3032
_msbuild_name_of_tool = {}
3133

gyp/pylib/gyp/MSVSSettings_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

gyp/pylib/gyp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

gyp/pylib/gyp/common_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

gyp/pylib/gyp/easy_xml_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2011 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

gyp/pylib/gyp/flock_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright (c) 2011 Google Inc. All rights reserved.
33
# Use of this source code is governed by a BSD-style license that can be
44
# found in the LICENSE file.

0 commit comments

Comments
 (0)