Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] fixed generate_cl yaml loading #1177

Merged
merged 3 commits into from
Oct 26, 2023
Merged
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
4 changes: 2 additions & 2 deletions tools/changelog/generate_cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@

write_cl['delete-after'] = True

yaml = yaml.YAML(type='safe',pure=True)
with open(Path.cwd().joinpath("tools/changelog/tags.yml")) as file:
tags = yaml.safe_load(file)
tags = yaml.load(file)

write_cl['changes'] = []

Expand All @@ -83,7 +84,6 @@

if write_cl['changes']:
with io.StringIO() as cl_contents:
yaml = yaml.YAML()
yaml.indent(sequence=4, offset=2)
yaml.dump(write_cl, cl_contents)
cl_contents.seek(0)
Expand Down
3 changes: 2 additions & 1 deletion tools/changelog/sierra_check_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@
if not write_cl['author']:
print("There are spaces or tabs instead of author username")

yaml = yaml.YAML(type='safe',pure=True)
with open(Path.cwd().joinpath("tags.yml")) as file:
tags = yaml.safe_load(file)
tags = yaml.load(file)

write_cl['changes'] = []

Expand Down
Loading