From 03827ddf38fda88b29f6d177be2fc59a201d14c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 31 Oct 2019 12:01:26 +0100 Subject: build: allow Python 3.8 PR-URL: https://github.com/nodejs/node/pull/30194 Reviewed-By: Christian Clauss Reviewed-By: Anna Henningsen Reviewed-By: David Carlier Reviewed-By: Trivikram Kamat Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Jiawen Geng --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index d1d7ff62ed3..f199a353482 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: -- cgit v1.2.3