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

fix deprecated error in check_changelog #667

Merged
merged 1 commit into from
Nov 10, 2023
Merged
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
5 changes: 3 additions & 2 deletions tools/changelog/check_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import os
import re
from pathlib import Path
from ruamel import yaml
from ruamel.yaml import YAML
from github import Github
import json

Expand Down Expand Up @@ -88,7 +88,8 @@
print("There are spaces or tabs instead of author username")

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

write_cl['changes'] = []

Expand Down
Loading