From 296c547f8dce849247a69c6a6af4f9f4510899cd Mon Sep 17 00:00:00 2001 From: James Bruten <109733895+james-bruten-mo@users.noreply.github.com> Date: Tue, 14 Jul 2026 15:01:33 +0100 Subject: [PATCH 1/2] add exclusion --- lfric_macros/validate_rose_meta.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lfric_macros/validate_rose_meta.py b/lfric_macros/validate_rose_meta.py index 185ac791..031a52c0 100755 --- a/lfric_macros/validate_rose_meta.py +++ b/lfric_macros/validate_rose_meta.py @@ -40,6 +40,7 @@ "fcm_make_ocean", "fcm_make_river", "lfric_coupled_rivers", + "coupled_rivers", ] From fd873ea321e64d9d118327988cde75608a99d817 Mon Sep 17 00:00:00 2001 From: James Bruten <109733895+james-bruten-mo@users.noreply.github.com> Date: Wed, 15 Jul 2026 10:56:51 +0100 Subject: [PATCH 2/2] update apply_macros --- lfric_macros/apply_macros.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lfric_macros/apply_macros.py b/lfric_macros/apply_macros.py index 79dd7078..4963832b 100755 --- a/lfric_macros/apply_macros.py +++ b/lfric_macros/apply_macros.py @@ -1092,7 +1092,11 @@ def apps_to_upgrade(self) -> list[Path]: for app_path in apps_list: # Ignore lfric_coupled_rivers as this is based on Jules-standalone # metadata which is not currently available - if "fcm_make" in str(app_path) or "lfric_coupled_rivers" in str(app_path): + if ( + "fcm_make" in str(app_path) + or "lfric_coupled_rivers" in str(app_path) + or "coupled_rivers" in str(app_path) + ): continue if not app_path.is_dir(): continue