NowanIlfideme / pydantic-yaml

YAML support for Pydantic models
MIT License
136 stars 11 forks source link

PendingDeprecationWarning (yaml.safe_dump is deprecated) #33

Closed apirogov closed 1 year ago

apirogov commented 1 year ago

I get the following in my tests, I guess from ruamel (0.17.21):

PendingDeprecationWarning: 
  safe_dump will be removed, use

    yaml=YAML(typ='safe', pure=True)
    yaml.dump(...)

  instead
    return cfg.yaml_dumps(

Would be nice if this would be addressed :)