diff --git a/README.md b/README.md index f28ed0a..2f4f977 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ This box is based on the [generic/ubuntu2004](https://github.com/lavabit/robox/t - deal.II 9.3 from the official backports and the deal.II-preCICE adapter (master) - CalculiX 2.19 from source and the CalculiX-preCICE adapter (master) - FEniCS latest from the FEniCS PPA and the FEniCS-preCICE adapter (PIP) -- Nutils latest from PIP - SU2 6.0.0 and the SU2-preCICE adapter (master) - code_aster 14.6 and the code_aster-preCICE adapter (master) - DUNE 2.8 and the experimental DUNE-preCICE adapter (master) diff --git a/Vagrantfile b/Vagrantfile index 761339e..300dbad 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -50,7 +50,6 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", path: "provisioning/install-dealii.sh", privileged: false config.vm.provision "shell", path: "provisioning/install-calculix.sh", privileged: false config.vm.provision "shell", path: "provisioning/install-fenics.sh", privileged: false - config.vm.provision "shell", path: "provisioning/install-nutils.sh", privileged: false config.vm.provision "shell", path: "provisioning/install-su2.sh", privileged: false config.vm.provision "shell", path: "provisioning/install-code_aster.sh", privileged: false config.vm.provision "shell", path: "provisioning/install-dune.sh", privileged: false diff --git a/provisioning/install-nutils.sh b/provisioning/install-nutils.sh deleted file mode 100644 index dd2b068..0000000 --- a/provisioning/install-nutils.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -set -ex - -# Install Nutils from PIP (we will also need matplotlib in our examples) -pip3 install --user matplotlib nutils==7.0 diff --git a/provisioning/install-precice.sh b/provisioning/install-precice.sh index 0a091ec..42e6495 100644 --- a/provisioning/install-precice.sh +++ b/provisioning/install-precice.sh @@ -62,19 +62,6 @@ pip3 install --user pyprecice # Additional python packages pip3 install --user pandas # Needed for the post-processing script of the oscillator tutorial -# Temporary workaround for https://github.com/precice/vm/issues/61 -# Remove as soon as https://github.com/precice/tutorials/issues/217 gets resolved -sudo apt-get install -y python3.8-venv -( - cd tutorials/perpendicular-flap/fluid-nutils/ - python3 -m venv nutils6-env - # shellcheck source=/dev/null - source nutils6-env/bin/activate - pip3 install nutils==6.3 pyprecice - sed -i "s/python3/nutils6-env\/bin\/python3/g" ./run.sh - deactivate -) - # Get the Python solverdummy into the examples if [ ! -d "python-bindings/" ]; then git clone --depth=1 --branch master https://github.com/precice/python-bindings.git