-
-
Notifications
You must be signed in to change notification settings - Fork 271
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 Base.TOML.Parser{Dates}
for TOML parsing w/ Dates support
#3938
Conversation
This will allow us to delete the `.Dates` field upstream.
These were relying on implicit `convert()` behavior in the previous constructor, which is harmless in this case but best not to depend upon.
a68165e
to
46416bd
Compare
DTParser
for TOML parsing w/ Dates supportTOML.Parser
for TOML parsing w/ Dates support
3bec0e4
to
4a89855
Compare
This now depends on JuliaLang/julia#55017 |
TOML.Parser
for TOML parsing w/ Dates supportBase.TOML.Parser{Dates}
for TOML parsing w/ Dates support
Re-running now that JuliaLang/julia#55017 is merged |
Probably need to wait for a new nightly first 😉 |
Nightlies are updated as soon as master commits are green, not nightly. The powerpc builds are lagging but otherwise all other nightlies should be up to date. |
The 64 bit windows nightly is a day old even though there are multiple green CI runs on julia master since.. odd. I'll give it time to resolve itself |
* Use `Base.TOML.Parser{Dates}` for TOML parsing w/ Dates support This will allow us to delete the `.Dates` field upstream. * Use `Base.TOMLCache(p::TOML.Parser)` constructor These were relying on implicit `convert()` behavior in the previous constructor, which is harmless in this case but best not to depend upon. --------- Co-authored-by: Ian Butterworth <[email protected]> (cherry picked from commit e4a6723)
Adapting to JuliaLang/julia#54755 and JuliaLang/julia#55017