Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docker/Dockerfile.vanilla
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ ENV CFLAGS="-O3 -mtune=generic" CPPFLAGS="-O3 -mtune=generic"
# packages. These are installed in editable mode.
# The order these are installed is important, e.g. FIAT must be installed
# before UFL otherwise `pip install fiat` will reinstall pypi ufl.

# Fix for petsc4py+slepc4py build to be removed after #4873 is resolved.
RUN echo 'setuptools<81' > constraints.txt
ENV PIP_CONSTRAINT=constraints.txt

RUN git clone --branch ${BRANCH} \
https://github.com/firedrakeproject/firedrake.git /opt/firedrake \
&& pip cache purge \
Expand Down
Loading