mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
build: support python 3.13
PR-URL: https://github.com/nodejs/node/pull/53190 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
This commit is contained in:
parent
614d476877
commit
92896945b8
1 changed files with 2 additions and 1 deletions
3
configure
vendored
3
configure
vendored
|
@ -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.13 >/dev/null && exec python3.13 "$0" "$@"
|
||||
command -v python3.12 >/dev/null && exec python3.12 "$0" "$@"
|
||||
command -v python3.11 >/dev/null && exec python3.11 "$0" "$@"
|
||||
command -v python3.10 >/dev/null && exec python3.10 "$0" "$@"
|
||||
|
@ -24,7 +25,7 @@ except ImportError:
|
|||
from distutils.spawn import find_executable as which
|
||||
|
||||
print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info))
|
||||
acceptable_pythons = ((3, 12), (3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
|
||||
acceptable_pythons = ((3, 13), (3, 12), (3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
|
||||
if sys.version_info[:2] in acceptable_pythons:
|
||||
import configure
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue