Skip to content

Commit be926c7

Browse files
cclaussTrott
authored andcommitted
build: find Python 3 or Python 2 in configure
PR-URL: #25878 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sam Roberts <[email protected]>
1 parent f2e35ff commit be926c7

File tree

1 file changed

+22
-16
lines changed

1 file changed

+22
-16
lines changed

configure

+22-16
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,34 @@
11
#!/bin/sh
22

3-
# Locate python2 interpreter and re-execute the script. Note that the
4-
# mix of single and double quotes is intentional, as is the fact that
5-
# the ] goes on a new line.
3+
# Locate an acceptable python interpreter and then re-execute the script.
4+
# Note that the mix of single and double quotes is intentional,
5+
# as is the fact that the ] goes on a new line.
6+
# When a 'which' call is made for a specific version of Python on Travis CI,
7+
# pyenv will alert which shims are available and then will fail the build.
68
_=[ 'exec' '/bin/sh' '-c' '''
9+
test ${TRAVIS} && exec python "$0" "$@" # workaround for pyenv on Travis CI
710
which python2.7 >/dev/null && exec python2.7 "$0" "$@"
8-
which python2 >/dev/null && exec python2 "$0" "$@"
11+
which python3.7 >/dev/null && exec python3.7 "$0" "$@"
12+
which python3.6 >/dev/null && exec python3.6 "$0" "$@"
13+
which python3.5 >/dev/null && exec python3.5 "$0" "$@"
914
exec python "$0" "$@"
1015
''' "$0" "$@"
1116
]
1217
del _
1318

1419
import sys
15-
from distutils.spawn import find_executable as which
16-
if sys.version_info[:2] != (2, 7):
17-
sys.stderr.write('Please use Python 2.7')
20+
from distutils.spawn import find_executable
1821

19-
python2 = which('python2') or which('python2.7')
20-
21-
if python2:
22-
sys.stderr.write(':\n\n')
23-
sys.stderr.write(' ' + python2 + ' ' + ' '.join(sys.argv))
24-
25-
sys.stderr.write('\n')
22+
print('Node configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info))
23+
acceptable_pythons = ((2, 7), (3, 7), (3, 6), (3, 5))
24+
if sys.version_info[:2] in acceptable_pythons:
25+
import configure
26+
else:
27+
python_cmds = ['python{0}.{1}'.format(*vers) for vers in acceptable_pythons]
28+
sys.stderr.write('Please use {0}.\n'.format(' or '.join(python_cmds)))
29+
for python_cmd in python_cmds:
30+
python_cmd_path = find_executable(python_cmd)
31+
if python_cmd_path and 'pyenv/shims' not in python_cmd_path:
32+
sys.stderr.write('\t{0} {1}\n'.format(python_cmd_path,
33+
' '.join(sys.argv[:1])))
2634
sys.exit(1)
27-
28-
import configure

0 commit comments

Comments
 (0)