Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Yank/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def __init__(self, store_directory, **analyzer_kwargs):
err_msg = 'Cannot find analysis.yaml script in {}'.format(store_directory)
raise RuntimeError(err_msg)
with open(analysis_script_path, 'r') as f:
analysis = yaml.load(f)
analysis = yaml.load(f, Loader=yaml.FullLoader)
phases_names = []
signs = {}
analyzers = {}
Expand Down
1 change: 1 addition & 0 deletions docs/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Bugfixes
- Fixed a bug that causes solute-only trajectories to be extracted with an incorrect order when the ions appear before
the solute atoms in the system (`#1213 <https://github.com/choderalab/yank/pull/1213>`_).
- A few fixes to the documentation (`#1213 <https://github.com/choderalab/yank/pull/1213>`_).
- Updated yaml loader to use FullLoader (related to `#1152 <https://github.com/choderalab/yank/issues/1152>`)


0.25.2 - Bugfix release
Expand Down