-
Notifications
You must be signed in to change notification settings - Fork 233
Use dateutil parser #213
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 dateutil parser #213
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.
Thanks for this.
Once nice thing about this change is that it removes the need to apply the backports-datetime-fromisoformat
monkey patch for 3.6 support. Would you mind cleaning that up from pyproject.toml and the top of the root module while you're at it?
Github states that there is still one change requested... But I don't find which it is referring to. Help anyone? |
@robinaly it's just waiting for re-review |
This PR replaces the datetime parsing from using datetime's fromisoformat (which isn't iso compliant) to dateutil, which is.