summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorFrankQiu <iam.frankqiu@gmail.com>2021-10-04 15:01:04 +0800
committerRich Trott <rtrott@gmail.com>2021-10-06 17:07:07 -0700
commit7752088ef663baa29501480f19e1bbc6de852e0d (patch)
tree46f771654715bbdee7ad16fa70e27ec4d6b9584a /configure
parent24c403cfaf8bdbcd8b19037531c8998709d2b949 (diff)
downloadnode-new-7752088ef663baa29501480f19e1bbc6de852e0d.tar.gz
build: support Python 3.10.0
PR-URL: https://github.com/nodejs/node/pull/40296 Fixes: https://github.com/nodejs/node/issues/40294 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index baf4b513da..6ef2da2e63 100755
--- a/configure
+++ b/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.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" "$@"
command -v python3.7 >/dev/null && exec python3.7 "$0" "$@"
@@ -21,7 +22,7 @@ except ImportError:
from distutils.spawn import find_executable as which
print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info))
-acceptable_pythons = ((3, 9), (3, 8), (3, 7), (3, 6))
+acceptable_pythons = ((3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
if sys.version_info[:2] in acceptable_pythons:
import configure
else: