We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The latest version of pyyaml (6.0) requires to specify explicitly a loader. To correct this issue, this line from srim/core/elementdb.py :
srim/core/elementdb.py
return yaml.load(open(dbpath, "r"))
must be changed to:
return yaml.load(open(dbpath, "r"), yaml.Loader)
Thanks for this wonderful python package!
The text was updated successfully, but these errors were encountered:
I made a pull request for this the other day. From what I can tell this repository is not maintained.
#5
Sorry, something went wrong.
I do not know how much more active it is, but the documentation states that this project is maintained on gitlab, and github is solely for visibility.
No branches or pull requests
The latest version of pyyaml (6.0) requires to specify explicitly a loader. To correct this issue, this line from
srim/core/elementdb.py
:must be changed to:
Thanks for this wonderful python package!
The text was updated successfully, but these errors were encountered: