Skip to content

Commit 18f7f84

Browse files
committed
Try installing requirements-wheel-test.txt for musllinux and manylinux wheels too
1 parent b243089 commit 18f7f84

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

ci/docker/python-free-threaded-wheel-manylinux-test-unittests.dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ RUN python${python_version}t -m venv ${ARROW_PYTHON_VENV}
4141
ENV PYTHON_GIL 0
4242
ENV PATH "${ARROW_PYTHON_VENV}/bin:${PATH}"
4343

44-
# pandas doesn't provide wheels for aarch64 yet, so we have to install nightly Cython
45-
# along with the rest of pandas' build dependencies and disable build isolation
46-
RUN python -m pip install \
47-
--pre \
48-
--prefer-binary \
49-
--extra-index-url "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" \
50-
Cython numpy
44+
COPY python/requirements-wheel-test.txt /arrow/python/
45+
RUN python -m pip install -r /arrow/python/requirements-wheel-test.txt
5146
RUN python -m pip install "meson-python==0.13.1" "meson==1.2.1" wheel "versioneer[toml]" ninja

ci/docker/python-free-threaded-wheel-musllinux-test-unittests.dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ ENV PATH "${ARROW_PYTHON_VENV}/bin:${PATH}"
5656
ENV TZDIR=/usr/share/zoneinfo
5757
RUN cp /usr/share/zoneinfo/Etc/UTC /etc/localtime
5858

59-
# pandas doesn't provide wheels for aarch64 yet, so we have to install nightly Cython
60-
# along with the rest of pandas' build dependencies and disable build isolation
61-
RUN python -m pip install \
62-
--pre \
63-
--prefer-binary \
64-
--extra-index-url "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" \
65-
Cython numpy
59+
COPY python/requirements-wheel-test.txt /arrow/python/
60+
RUN python -m pip install -r /arrow/python/requirements-wheel-test.txt
6661
RUN python -m pip install "meson-python==0.13.1" "meson==1.2.1" wheel "versioneer[toml]" ninja

0 commit comments

Comments
 (0)