There are a lot of these warnings telling us about a deprecated function:
YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
We may either specify Loader=yaml.FullLoader in the load() function or try replacing it with safe_load().
There are a lot of these warnings telling us about a deprecated function:
YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
We may either specify
Loader=yaml.FullLoader
in theload()
function or try replacing it withsafe_load()
.