Skip to content

Commit

Permalink
fix: Pin Cython version to workaround issue when building PyArrow fro…
Browse files Browse the repository at this point in the history
…m source (#2714)
  • Loading branch information
LeonLuttenberger authored Mar 7, 2024
1 parent 0d0e78d commit 3c73628
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion building/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ COPY pyproject.toml poetry.lock ./

RUN pip3 install --upgrade pip wheel
RUN pip3 install --upgrade urllib3==1.26.16 # temporary to avoid https://github.com/urllib3/urllib3/issues/2168 (TODO remove when the AL2 image updates to support OpenSSL 1.1.1+)
RUN pip3 install --upgrade six cython cmake hypothesis poetry
RUN pip3 install --upgrade six cython==3.0.8 cmake hypothesis poetry
RUN poetry config virtualenvs.create false --local && poetry install --no-root --only main

RUN rm -f pyproject.toml poetry.lock
Expand Down
2 changes: 1 addition & 1 deletion building/lambda/Dockerfile.al2023
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ FROM ${python_version}
COPY pyproject.toml poetry.lock ./

RUN pip3 install --upgrade pip wheel
RUN pip3 install --upgrade six cython cmake hypothesis poetry
RUN pip3 install --upgrade six cython==3.0.8 cmake hypothesis poetry
RUN poetry config virtualenvs.create false --local && poetry install --no-root --only main

RUN rm -f pyproject.toml poetry.lock
Expand Down

0 comments on commit 3c73628

Please sign in to comment.