Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Problem] With the latest version of pyYAML [> 5.4.1], the `yaml.load(f)` is deprecated in favour of `yaml.load(f, Loader=loader)`. This causes """ File "/usr/local/lib/python3.6/site-packages/glusto/configurable.py", line 215, in _load_yaml config = yaml.load(configfd) TypeError: load() missing 1 required positional argument: 'Loader' """ More discussion on this topic [1] [1] yaml/pyyaml#576 [Solution] Fix the version to 5.4.1 as changing the code to accomodate the latest method changes requires further testing. Signed-off-by: Pranav <[email protected]>
- Loading branch information