-
- Notifications
You must be signed in to change notification settings - Fork 19.4k
Closed
Labels
Milestone
Description
Behavior in pandas 0.23:
>>> import pandas as pd >>> pd.__version__ 0.23.0 >>> x = pd.date_range(start='2019-01-01', end='2019-01-30', freq='D') >>> x = x.tz_localize('UTC') >>> x.to_frame().dtypes 0 datetime64[ns, UTC] dtype: objectBehavior in pandas 0.24
>>> import pandas as pd >>> pd.__version__ 0.24.2 >>> x = pd.date_range(start='2019-01-01', end='2019-01-30', freq='D') >>> x = x.tz_localize('UTC') >>> x.to_frame().dtypes 0 datetime64[ns] dtype: object