-
Notifications
You must be signed in to change notification settings - Fork 25
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
Replace toml by tomllib #168
Comments
I cannot find any information on this on the PyPI page. Where is this documented? |
The PyPi page states, It suggests making the following change to allow for a wider compatibility of Python versions
Though would still need tomli_w for output. |
Doesn't your PR drop support for Python < 3.11 then? Python 3.8 recently went EOL, but Python 3.9 and 3.10 are still supported for one and two years. |
Updated the PR to continue using methods available in Python 3.9 and 3.10 |
The tomli package should no longer be used. Instead tomlib from the standard library and tomli_w should be used.
Possible Solution
Modify files which use the older methods.
The text was updated successfully, but these errors were encountered: