From 4db8e476aeba7ddfbd823663b9eac788f8aeafdf Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 8 Nov 2021 19:33:23 +0100 Subject: [PATCH] Install the zip command in the cibuildwheel image Required to unpack the wheel archive and strip symbols. --- tools/build/wheel_linux_before_all.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.2