We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pandas 0.14.1 does parse UTC 'Z' designator:
In [1]: import pandas as pd;pd.__version__ Out[1]: '0.14.1' In [2]: pd.Timestamp("2014-11-10 11:00Z") Out[2]: Timestamp('2014-11-10 11:00:00+0000', tz='UTC')
Beginning with pandas 0.15.0, it seems to be broken:
In [1]: import pandas as pd;pd.__version__ Out[1]: '0.15.0' In [2]: pd.Timestamp("2014-11-10 11:00Z") Out[2]: Timestamp('2014-11-10 11:00:00')
The text was updated successfully, but these errors were encountered:
xref #7833
Sorry, something went wrong.
@broessli interested in doing a PR?
Done, see #8786
closed by #8786
reopening as #8786 was reverted
Successfully merging a pull request may close this issue.
Pandas 0.14.1 does parse UTC 'Z' designator:
Beginning with pandas 0.15.0, it seems to be broken:
The text was updated successfully, but these errors were encountered: