-
Notifications
You must be signed in to change notification settings - Fork 16
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 package usage #133
Comments
Hi @auscompgeek where exactly you use that package ? |
@JawadHalabiMTB If you search the code for |
There seems to be a push to get tomli included in stdlib. hukkin/tomli#141 |
tomli seems like a good choice |
@auscompgeek 10x man so we can just add tomli package to setup.cfg under [options]->install_requires i guess |
Well, the code would also have to be updated to use tomli, but yes that'd be the first step. |
Sure that's my thought as well i mean for sure it should be installed via pip and then just replace all the "import toml" with "import tomli" as wel as the usage and still don't break functionality Ex: toml.load(). I am on it |
this came due to issue robotpy#133
this came due to issue robotpy#133
this is due to issue robotpy#133
Please note that tomli ntends to be minimal so it has no dump/s function which is required by the project so i think we should rethink about the tomli solution |
this came due to issue robotpy#133
this came due to issue robotpy#133
this came due to issue robotpy#133
this is due to issue robotpy#133
this came due to issue robotpy#133
this came due to issue robotpy#133
Patch 1 solution for "Replace toml package usage #133"
Done in #137. |
The
toml
package is unfortunately unmaintained, and implements TOML v0.5.0. The rest of the ecosystem has moved to support TOML v1.0.0.There are a few TOML v1.0.0 libraries we could use, including:
The text was updated successfully, but these errors were encountered: