Skip to content

Commit

Permalink
Quote cython dependency pin
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias authored Mar 11, 2024
1 parent 3f058dd commit f7815c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN apt-get update \

RUN echo "[global]\nextra-index-url=https://www.piwheels.org/simple" > /etc/pip.conf \
&& python -m pip install -U pip \
&& python -m pip install wheel setuptools numpy pandas==1.4.3 psutil cython<3.0.9 \
&& python -m pip install wheel setuptools numpy pandas==1.4.3 psutil "cython<3.0.9" \
&& which python

WORKDIR /build/arrow
Expand Down Expand Up @@ -81,7 +81,7 @@ ENV Plasma_DIR=$ARROW_HOME


WORKDIR /build/arrow/python
RUN pip install -r requirements-wheel-build.txt cython<3.0.9 \
RUN pip install -r requirements-wheel-build.txt "cython<3.0.9" \
&& python3 setup.py build_ext --build-type="release" --bundle-arrow-cpp bdist_wheel \
&& ls -l /build/arrow/python/dist

Expand Down

0 comments on commit f7815c0

Please sign in to comment.