-
Notifications
You must be signed in to change notification settings - Fork 34
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
Use the modern tomllib/tomli backends for reading TOML #176
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 comments, otherwise LGTM
Replace the deprecated `toml` package with the built-in `tomllib` module in Python 3.11, with fallback to the modern `tomli` package in older Python versions.
Thanks for the review. Applied both suggestions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
🤞 this should make this ready to merge. I just dropped a lot of older versions that were failing on your PR. Time to move on! |
Success! Thanks for the contribution! |
Thank you! |
Replace the deprecated
toml
package with the built-intomllib
module in Python 3.11, with fallback to the moderntomli
package in older Python versions.