Commit 3794ff52 authored by Andrew Murray's avatar Andrew Murray
Browse files

Updated bin name for PyPy >= 7.3.2

parent 70c8d128
......@@ -57,7 +57,11 @@ else # not virtualenv
bin_name="python$python_mm"
else
macpie_bin="$PWD/pypy$python_mm-v$implementer_version-osx64/bin"
bin_name="pypy"
if [ "$(lex_ver $implementer_version)" -ge "$(lex_ver 7.3.2)" ]; then
bin_name="pypy3"
else
bin_name="pypy"
fi
fi
if [ "$PYTHON_EXE" != "$macpie_bin/$bin_name" ]; then
ingest "Wrong macpython python cmd '$PYTHON_EXE'"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment