I have a naive timestamp which I need to convert to tzutc()
timedate in order to calculate time delta.
I converted string to Date using
pd.Timestamp(x)
Then converted it to UTC using
pytz.utc.localize(x)
and got:
Timestamp('2019-01-09 00:00:00+0000', tz='UTC')
Problem is that the date I need to compare it to is
Timestamp('2018-06-07 18:13:53+0000', tz='tzutc()')
When comparing them I get
TypeError: Timestamp subtraction must have the same timezones or no timezones