You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
YAML 1.31 recommends using something else, such as YAML::PP.
I have experimented with switching to YAML::PP and YAML::Tiny but the tests fail to subtle differences in serialisation. Notably, some numbers are turned into strings, e.g. version: \'1.64\' instead of version: 1.64.
In experiments YAML::Tiny seems to work better as it preserves decimal places, e.g. 0.00 is not turned into 0.
(On closer inspection, YAML::Tiny does not support all of the required features.)
The text was updated successfully, but these errors were encountered:
YAML 1.31 recommends using something else, such as YAML::PP.
I have experimented with switching to YAML::PP and YAML::Tiny but the tests fail to subtle differences in serialisation. Notably, some numbers are turned into strings, e.g.
version: \'1.64\'
instead ofversion: 1.64
.In experiments YAML::Tiny seems to work better as it preserves decimal places, e.g.
0.00
is not turned into0
.(On closer inspection, YAML::Tiny does not support all of the required features.)
The text was updated successfully, but these errors were encountered: