I have this code to create a date range dataframe
dates_df = pd.date_range(start='01/01/2022', end='02/02/2022', freq='1H')
The problem is that the time is not UTC. It is dtype='datetime64[ns] instead of dtype='datetime64[ns, UTC]
How can I generate the date range in UTC without having the generated time change?