From a5fb422f7cbbed97261a2da51dc125e7f579ed2b Mon Sep 17 00:00:00 2001 From: Jesper Friis Date: Wed, 1 May 2024 16:47:22 +0200 Subject: [PATCH] Fix weekly build (#828) Remove pyarrow for requirements on weekly build for musllinux and old versions of manylinux since it fails to build on these versions. --- .github/docker/Dockerfile-manylinux.template | 1 + .github/docker/Dockerfile-musllinux.template | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/docker/Dockerfile-manylinux.template b/.github/docker/Dockerfile-manylinux.template index 14b54d090..2fe5a7098 100644 --- a/.github/docker/Dockerfile-manylinux.template +++ b/.github/docker/Dockerfile-manylinux.template @@ -65,6 +65,7 @@ RUN cd /opt/_internal && \ -e '/^h5py/d' \ -e '/oteapi/d' \ -e '/^otelib/d' \ + -e '/^pyarrow/d' \ -i /tmp/requirements_full.txt # Install required Python packages diff --git a/.github/docker/Dockerfile-musllinux.template b/.github/docker/Dockerfile-musllinux.template index 873156263..351edf889 100644 --- a/.github/docker/Dockerfile-musllinux.template +++ b/.github/docker/Dockerfile-musllinux.template @@ -54,6 +54,7 @@ RUN apk add -u \ -e '/^h5py/d' \ -e '/oteapi/d' \ -e '/^otelib/d' \ + -e '/^pyarrow/d' \ -i /tmp/requirements_full.txt && \ # Install required Python packages mkdir -p /ci/pip_cache && \