Skip to content

Commit d6e24f2

Browse files
committed
build: adjust message when using earlier version of python
Signed-off-by: Stewart X Addison <sxa@redhat.com>
1 parent 26846f2 commit d6e24f2

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

configure

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ else:
3333
if python_cmd_path and 'pyenv/shims' not in python_cmd_path:
3434
sys.stderr.write('\t{} {}\n'.format(python_cmd_path, ' '.join(sys.argv[:1])))
3535
if sys.version_info > (3, 10):
36-
sys.stderr.write('Running "configure" with newer versions of python has not been tested and may not work.\n')
36+
sys.stderr.write('Running "configure" with newer versions of Python has not been tested and may not work.\n')
3737
sys.stderr.write('To bypass this check, run "python ./configure.py" and report whether it works via an issue at https://github.com/nodejs/node\n')
3838
else:
39-
sys.stderr.write('Running "configure" with a pre-3.6 version of python is not supported and will likely not work.\n')
40-
sys.stderr.write('To bypass this check (not recommended) run "python ./configure.py\n"')
39+
sys.stderr.write('Running "configure" with a pre-3.6 version of Python will not work.\n')
4140
sys.exit(1)

0 commit comments

Comments
 (0)