]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Install the zip command in the cibuildwheel image
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 8 Nov 2021 18:33:23 +0000 (19:33 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 8 Nov 2021 19:02:19 +0000 (20:02 +0100)
Required to unpack the wheel archive and strip symbols.

tools/build/wheel_linux_before_all.sh

index 0fe4161e012ec39ea59b3b2150b29a2694f6605e..f005bc8de2f63241b8361821f0675118d51139d8 100755 (executable)
@@ -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