We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc845d0 commit 1366528Copy full SHA for 1366528
docker/build_scripts/finalize-one.sh
@@ -26,6 +26,9 @@ export PIP_NO_WARN_SCRIPT_LOCATION=0
26
if [ "${PY_IMPL}" == "graalpy" ]; then
27
# GraalPy doesn't update pip/setuptools because it uses a patched version of pip/setuptools
28
"${PREFIX}/bin/python" -m ensurepip --default-pip
29
+ case ${PY_VER} in
30
+ 3.11) "${PREFIX}/bin/python" -m pip uninstall -y setuptools;;
31
+ esac
32
"${PREFIX}/bin/python" -m pip install -U --require-hashes -r "${MY_DIR}/requirements${PY_VER}.txt"
33
elif [ -f "/usr/local/bin/cpython${PY_VER}" ]; then
34
# Use the already installed cpython pip to bootstrap pip if available
0 commit comments