summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2019-10-31 12:01:26 +0100
committercclauss <cclauss@me.com>2019-11-02 14:57:46 +0100
commit3a076bae9c256a830353cf47170599d30baa6c1b (patch)
tree1683bd86138326c705d6ebb6066ee3757f974899 /configure
parent312c02d25e90aac1ee087bf3386636e8c81e2a66 (diff)
downloadandroid-node-v8-3a076bae9c256a830353cf47170599d30baa6c1b.tar.gz
android-node-v8-3a076bae9c256a830353cf47170599d30baa6c1b.tar.bz2
android-node-v8-3a076bae9c256a830353cf47170599d30baa6c1b.zip
build: allow Python 3.8
PR-URL: https://github.com/nodejs/node/pull/30194 Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index d1d7ff62ed..f199a35348 100755
--- a/configure
+++ b/configure
@@ -7,6 +7,7 @@
# pyenv will alert which shims are available and then will fail the build.
_=[ 'exec' '/bin/sh' '-c' '''
test ${TRAVIS} && exec python "$0" "$@" # workaround for pyenv on Travis CI
+which python3.8 >/dev/null && exec python3.8 "$0" "$@"
which python3.7 >/dev/null && exec python3.7 "$0" "$@"
which python3.6 >/dev/null && exec python3.6 "$0" "$@"
which python3.5 >/dev/null && exec python3.5 "$0" "$@"
@@ -20,7 +21,7 @@ import sys
from distutils.spawn import find_executable
print('Node configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info))
-acceptable_pythons = ((2, 7), (3, 7), (3, 6), (3, 5))
+acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
if sys.version_info[:2] in acceptable_pythons:
import configure
else: