Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions adapters/Dockerfile.fenics-adapter
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ RUN add-apt-repository -y ppa:fenics-packages/fenics && \
apt-get -qq install --no-install-recommends fenics && \
rm -rf /var/lib/apt/lists/*

# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186.
RUN pip3 install --user cython # TODO: can we put this dependency into requirements.txt of python?

USER precice
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUN apt-get -qq update && apt-get -qq install \
python3 python3-dev && \
rm -rf /var/lib/apt/lists/*

# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186.
RUN wget -q https://bootstrap.pypa.io/get-pip.py -O get-pip.py && \
python3 get-pip.py && \
pip3 install Cython mpi4py numpy
Expand Down
1 change: 1 addition & 0 deletions tests/Test_bindings.Ubuntu1604.home/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ WORKDIR /home/precice
RUN git clone --branch $branch https://github.com/precice/python-bindings.git
# Builds the precice python bindings
WORKDIR /home/precice/python-bindings
# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186.
RUN pip3 install --user .

# Runs the python solverdummy
Expand Down
1 change: 1 addition & 0 deletions tests/Test_bindings.Ubuntu1804.home/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ WORKDIR /home/precice
RUN git clone --branch $branch https://github.com/precice/python-bindings.git
# Builds the precice python bindings
WORKDIR /home/precice/python-bindings
# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186.
RUN pip3 install --user .

# Runs the python solverdummy
Expand Down