From: Daniele Varrazzo Date: Mon, 8 Nov 2021 18:33:23 +0000 (+0100) Subject: Install the zip command in the cibuildwheel image X-Git-Tag: 3.0.3~10^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4db8e476aeba7ddfbd823663b9eac788f8aeafdf;p=thirdparty%2Fpsycopg.git Install the zip command in the cibuildwheel image Required to unpack the wheel archive and strip symbols. --- diff --git a/tools/build/wheel_linux_before_all.sh b/tools/build/wheel_linux_before_all.sh index 0fe4161e0..f005bc8de 100755 --- a/tools/build/wheel_linux_before_all.sh +++ b/tools/build/wheel_linux_before_all.sh @@ -21,5 +21,8 @@ if [[ ! "$AUDITWHEEL_ARCH" = "aarch64" ]]; then curl -sk https://www.postgresql.org/media/keys/ACCC4CF8.asc \ | apt-key add - fi + apt-get update -apt-get -y install libpq-dev + +# zip is required by strip_wheel.sh +apt-get -y install libpq-dev zip