From 1dfbf70fdfd99ae75068fdb3630790c96101a96a Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 10 Sep 2024 15:37:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Stop=20updating=20`setuptools`?= =?UTF-8?q?=20in=20manylinux=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We've hit https://github.com/pypa/setuptools/issues/4483 in some manylinux build jobs and this patch is supposed to fix it. --- build-scripts/build-manylinux-wheels.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/build-manylinux-wheels.sh b/build-scripts/build-manylinux-wheels.sh index 005e9c44f..22acf407e 100755 --- a/build-scripts/build-manylinux-wheels.sh +++ b/build-scripts/build-manylinux-wheels.sh @@ -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