From 55c6d6cfeb50df3ecb0282c5520e80f008f1371c Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 10 Jul 2023 15:23:22 -0400 Subject: [PATCH] tools: run fetch_deps.py with Python 3 Python 3 is now required to run `gclient`. Run `tools/v8/fetch_deps.py`, which spawns `glient`, with Python 3. --- 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.