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 ca787a4 commit ee6ebc1Copy full SHA for ee6ebc1
docker/build_scripts/finalize.sh
@@ -83,6 +83,7 @@ pipx upgrade-shared --pip-args="--no-index --find-links=/tmp/pinned-wheels"
83
for TOOL_PATH in $(find ${MY_DIR}/requirements-tools -type f); do
84
TOOL=$(basename ${TOOL_PATH})
85
case ${AUDITWHEEL_PLAT}-${TOOL} in
86
+ manylinux*_armv7l-swig|manylinux*_armv7l-cmake) apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y ${TOOL};;
87
musllinux*_s390x-uv) continue;; # uv doesn't provide musl s390x wheels due to Rust issues
88
*) pipx install --pip-args="--require-hashes -r ${TOOL_PATH} --only-binary" ${TOOL};;
89
esac
0 commit comments