Skip to content

Commit a1b0d41

Browse files
authored
fix: update shebang lines from python to python3 (#94)
This is mostly to make Fedora's .rpm builder happy. But it won't hurt now that Python 2 is unsupported in gyp-next.
1 parent 787f0e1 commit a1b0d41

18 files changed

+18
-18
lines changed

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

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

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

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

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

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.

pylib/gyp/generator/msvs_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
# Copyright (c) 2012 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.

pylib/gyp/generator/ninja_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

pylib/gyp/generator/xcode_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) 2013 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

pylib/gyp/input_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 2013 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

0 commit comments

Comments
 (0)