ufs-community / uwtools

Workflow tools for use with applications with UFS and beyond
GNU Lesser General Public License v2.1
12 stars 24 forks source link

Omnibus 2024-11-27 #663

Closed maddenp-noaa closed 5 hours ago

maddenp-noaa commented 1 week ago

Synopsis

Given config.yaml

a: 2
b: 7
foo: !int "{{ a * b }}"
bar: !int "{{ foo }}"

Old behavior:

$ uw config realize -i config.yaml --output-format yaml
a: 2
b: 7
foo: 14
bar: !int '!int 14'

New behavior:

$ uw config realize -i config.yaml --output-format yaml
a: 2
b: 7
foo: 14
bar: 14

Type

Impact

Checklist