Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "play build-module" by replacing yaml.load with yaml.safe_load
This fixes an error when "play build-module" is run on Python 3.7.11: load() missing 1 required positional argument: 'Loader' This follows the recommendation shown on https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation A loader argument is now required. This commit assumes that dependencies.yml uses standard YAML tags, and so uses safe_loader. This is the most secure loader.
- Loading branch information