diff --git a/docker/install_deps_from_sources.py b/docker/install_deps_from_sources.py index 0da124908..2fb716339 100644 --- a/docker/install_deps_from_sources.py +++ b/docker/install_deps_from_sources.py @@ -11,7 +11,7 @@ PACKAGES = { "cgal": "5.2.2", "dolfinx": "0.6.0", - "dune": "2.9", + "dune": "2.10", "mfem": "4.5.2", "doxygen": "Release_1_9_6" } @@ -94,6 +94,7 @@ def _install_pkg(name, opts: dict) -> None: _clone_sources("https://gitlab.dune-project.org/core/dune-istl.git", f"releases/{PACKAGES['dune']}") _clone_sources("https://gitlab.dune-project.org/extensions/dune-alugrid.git", f"releases/{PACKAGES['dune']}") _clone_sources("https://gitlab.dune-project.org/staging/dune-typetree.git", f"releases/{PACKAGES['dune']}") + _clone_sources("https://gitlab.dune-project.org/staging/dune-uggrid.git", f"releases/{PACKAGES['dune']}") _clone_sources("https://gitlab.dune-project.org/staging/dune-functions.git", f"releases/{PACKAGES['dune']}") subprocess.run(["dune-common/bin/dunecontrol", "--opts=dune.opts", "configure"], check=True) subprocess.run(["dune-common/bin/dunecontrol", "--opts=dune.opts", "make", "-j4"], check=True)