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
The following code worked in pandas 0.8.0b1, but not longer in 0.8.1:
import pandas as pnd from datetime import datetime from dateutil.tz import tzoffset values = [188.5, 328.25] index = [datetime(2012, 5, 11, 11, tzinfo=tzoffset(None, 7200)), datetime(2012, 5, 11, 12, tzinfo=tzoffset(None, 7200))] series = pnd.Series(data = values, index = index)
What would you propose as a workaround?
Python 2.7.2, Numpy 1.6.1
The text was updated successfully, but these errors were encountered:
TST: verify that #1676 has been fixed
5b033ce
This has been fixed in the development version. Added your code as a a unit test that dateutil.tz.tzoffset is supported
dateutil.tz.tzoffset
Sorry, something went wrong.
No branches or pull requests
The following code worked in pandas 0.8.0b1, but not longer in 0.8.1:
What would you propose as a workaround?
Python 2.7.2, Numpy 1.6.1
The text was updated successfully, but these errors were encountered: