Skip to content

Commit

Permalink
📦 Stop updating setuptools in manylinux build
Browse files Browse the repository at this point in the history
We've hit pypa/setuptools#4483 in some
manylinux build jobs and this patch is supposed to fix it.
  • Loading branch information
webknjaz committed Sep 10, 2024
1 parent e5fa4fe commit 1dfbf70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export CFLAGS="'-I${STATIC_DEPS_PREFIX}/include'"
for PY in $PYTHONS; do
PIP_BIN="/opt/python/${PY}/bin/pip"
>&2 echo Using "${PIP_BIN}"...
${PIP_BIN} install -U 'pip >= 20' setuptools wheel ${PIP_GLOBAL_ARGS}
${PIP_BIN} install -U 'pip >= 20' wheel ${PIP_GLOBAL_ARGS}
${PIP_BIN} wheel "${ISOLATED_SRC_DIRS}/${PY}" -w "${ORIG_WHEEL_DIR}" ${PIP_GLOBAL_ARGS}
done

Expand Down

0 comments on commit 1dfbf70

Please sign in to comment.