From ba7026bfd3fab4b618391e47149ce4b7da6ef513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= Date: Tue, 8 Apr 2025 10:55:05 +0200 Subject: [PATCH 1/3] bump version to v0.4.0 --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index 3762d164..d0c7773c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -31,7 +31,7 @@ keywords: - mesh file I/O license: MIT version: 0.4.0 -date-released: '2024-11-20' +date-released: '2025-04-08' identifiers: - description: Collection of archived snapshots of all versions type: doi From 14d75c98dae0a36d09186c0ad8e595bf428535fe Mon Sep 17 00:00:00 2001 From: Timo Koch Date: Mon, 5 Jan 2026 19:56:52 +0100 Subject: [PATCH 2/3] Test against dune 2.10 --- docker/install_deps_from_sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install_deps_from_sources.py b/docker/install_deps_from_sources.py index 0da12490..affe4cfa 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" } From 08772015251d4c795c9f1ca79dd3ffe428d928b0 Mon Sep 17 00:00:00 2001 From: Timo Koch Date: Mon, 5 Jan 2026 19:16:56 +0000 Subject: [PATCH 3/3] dune-uggrid now a requirement for dune-functions --- docker/install_deps_from_sources.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/install_deps_from_sources.py b/docker/install_deps_from_sources.py index affe4cfa..2fb71633 100644 --- a/docker/install_deps_from_sources.py +++ b/docker/install_deps_from_sources.py @@ -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)