danijar/crafter

ruamel.yaml version

Closed this issue · 0 comments

The newest version of ruamel.yaml has removed the safe_load function used by crafter, causing the following error when trying to run through the gui:

AttributeError: 
"safe_load()" has been removed, use

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

The can be fixed most easily by running
pip install "ruamel.yaml<0.18.0"