From bd1a2fbd91e80819f6d6ab5feb4330aeaefaaa21 Mon Sep 17 00:00:00 2001 From: Mohammed Keyvanzadeh Date: Sun, 11 Dec 2022 06:28:02 +0330 Subject: [PATCH] build: add python 3.11 support for android MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Python 3.11 support for configuring Node.js for Android. PR-URL: https://github.com/nodejs/node/pull/45765 Reviewed-By: Michaƫl Zasso Reviewed-By: Richard Lau --- android-configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android-configure b/android-configure index 8bab2e0b90c000..2731e48d708a4a 100755 --- a/android-configure +++ b/android-configure @@ -4,6 +4,7 @@ # Note that the mix of single and double quotes is intentional, # as is the fact that the ] goes on a new line. _=[ 'exec' '/bin/sh' '-c' ''' +command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" command -v python3.10 >/dev/null && exec python3.10 "$0" "$@" command -v python3.9 >/dev/null && exec python3.9 "$0" "$@" command -v python3.8 >/dev/null && exec python3.8 "$0" "$@" @@ -22,7 +23,7 @@ except ImportError: from distutils.spawn import find_executable as which print('Node.js android configure: Found Python {}.{}.{}...'.format(*sys.version_info)) -acceptable_pythons = ((3, 10), (3, 9), (3, 8), (3, 7), (3, 6)) +acceptable_pythons = ((3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6)) if sys.version_info[:2] in acceptable_pythons: import android_configure else: