From 3944650efc5a7c8e07b077b440b7e988178bfe81 Mon Sep 17 00:00:00 2001 From: Chris Blanton Date: Thu, 9 Apr 2026 17:35:55 -0400 Subject: [PATCH 1/3] #854 Include schema change that forbids integers for start/stop years --- fre/gfdl_msd_schemas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fre/gfdl_msd_schemas b/fre/gfdl_msd_schemas index d5a42a3b4..a53d6699e 160000 --- a/fre/gfdl_msd_schemas +++ b/fre/gfdl_msd_schemas @@ -1 +1 @@ -Subproject commit d5a42a3b423265262aefe9a4a6ba9add90d784ab +Subproject commit a53d6699edd3f4f0ebff5335fa4184813e2e16b5 From bba56406d8ad7436085a6b959956aa48da529887 Mon Sep 17 00:00:00 2001 From: Chris Blanton Date: Mon, 13 Apr 2026 19:23:43 -0400 Subject: [PATCH 2/3] #854 Update test yaml to the now-required strings for years --- fre/yamltools/tests/AM5_example/am5.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fre/yamltools/tests/AM5_example/am5.yaml b/fre/yamltools/tests/AM5_example/am5.yaml index cf39a752c..c34be59f3 100644 --- a/fre/yamltools/tests/AM5_example/am5.yaml +++ b/fre/yamltools/tests/AM5_example/am5.yaml @@ -5,8 +5,8 @@ fre_properties: # amip - &EXP_AMIP_START "1979" - &EXP_AMIP_END "2020" - - &ANA_AMIP_START 1980 - - &ANA_AMIP_END 2020 + - &ANA_AMIP_START "1980" + - &ANA_AMIP_END "2020" # - &PP_AMIP_CHUNK96 "P1Y" - &PP_AMIP_CHUNK384 "P1Y" From 6e85e5c4f546e1ed062d8b6d09d27322939bfde5 Mon Sep 17 00:00:00 2001 From: Chris Blanton Date: Wed, 15 Apr 2026 17:35:19 -0400 Subject: [PATCH 3/3] #854 Updated documentation for specifying postprocess start and stop --- docs/usage/postprocess.rst | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/usage/postprocess.rst b/docs/usage/postprocess.rst index 4989d735d..11d47debb 100644 --- a/docs/usage/postprocess.rst +++ b/docs/usage/postprocess.rst @@ -73,15 +73,21 @@ Required configuration settings: history_segment: P1Y -3. Set the date range to postprocess as ISO8601 dates +3. Set the date range to postprocess as ISO8601 dates (preferred) or four-digit year (YYYY). .. code-block:: console postprocess: settings: - pp_start: 1979-01-01T0000Z + pp_start: "1979-01-01T0000Z" + pp_stop: "2020-01-01T0000Z" - pp_stop: 2020-01-01T0000Z + or + + postprocess: + settings: + pp_start: "1979" + pp_stop: "2020" Postprocess components ----------------------