From 48263795169beab0c89533ca2e3fc2d156ab3723 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 12 Jul 2023 15:40:57 +0100 Subject: [PATCH] tools: run fetch_deps.py with Python 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Python 3 is now required to run `gclient`. Run `tools/v8/fetch_deps.py`, which spawns `glient`, with Python 3. PR-URL: https://github.com/nodejs/node/pull/48729 Fixes: https://github.com/nodejs/node/issues/48728 Reviewed-By: Luigi Pinca Reviewed-By: Debadree Chatterjee Reviewed-By: Jiawen Geng Reviewed-By: Michaƫl Zasso Reviewed-By: Moshe Atlow Reviewed-By: Yagiz Nizipli --- tools/v8/fetch_deps.py | 2 +- tools/v8/node_common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/v8/fetch_deps.py b/tools/v8/fetch_deps.py index 5fb7ff7676ae5c..b7e628608ad419 100755 --- a/tools/v8/fetch_deps.py +++ b/tools/v8/fetch_deps.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright 2017 the V8 project authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. diff --git a/tools/v8/node_common.py b/tools/v8/node_common.py index 2efb21860e3cb9..b78e30c321d192 100755 --- a/tools/v8/node_common.py +++ b/tools/v8/node_common.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright 2017 the V8 project authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file.