concat of tz series and no tz results in attribute error. · Issue #11755 · pandas-dev/pandas (original) (raw)

import pandas as pd x = pd.Series(pd.date_range('20151124 10:00', '20151124 11:00', freq = '1h', tz = "UTC") ) y = pd.Series(pd.date_range('2012-01-01', '2012-01-03')) pd.concat([x,y])