Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: true
dist: trusty
language: python
python:
- "3.5"
- "3.6"
services:
- docker
install:
Expand Down
6 changes: 3 additions & 3 deletions adapters/Dockerfile.fenics-adapter
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# System testing preCICE with fenics-adapter

# Building on top of the latest preCICE-build
ARG from=precice/precice:latest
ARG from=precice/precice-ubuntu1804.home-develop
FROM $from

USER root
Expand All @@ -26,7 +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/*

RUN pip3 install --user cython # TODO: can we put this dependency into requirements.txt of python?
RUN pip3 install --user cython # TODO: can we put this dependency into requirements.txt of python?

USER precice

Expand All @@ -40,7 +40,7 @@ ARG adapter_branch=develop
RUN pip3 install --user https://github.com/precice/python-bindings/archive/$bindings_branch.zip

# Building fenics-adapter
RUN pip3 install --user https://github.com/precice/fenics-adapter/archive/$adapter_branch.zip
RUN pip3 install --user numpy==1.14.5 https://github.com/precice/fenics-adapter/archive/$adapter_branch.zip

WORKDIR /home/precice
RUN mkdir -p Logs Data/Input Data/Output Data/Exchange
Expand Down
2 changes: 1 addition & 1 deletion trigger_systemtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def generate_travis_job(adapter, user, enable_output = False, trigger_failure =
"dist": "trusty",
"language": "python",
"services": "docker",
"python": "3.5",
"python": "3.6",
"install": "pip install Jinja2",
"jobs": {
"include":[
Expand Down