We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1174bd5 commit 39048f6Copy full SHA for 39048f6
pandas/tests/test_series.py
@@ -5020,7 +5020,8 @@ def test_getitem_setitem_datetime_tz_pytz(self):
5020
5021
def test_getitem_setitem_datetime_tz_dateutil(self):
5022
tm._skip_if_no_dateutil();
5023
- from dateutil.tz import gettz, tzutc
+ from dateutil.tz import tzutc
5024
+ from dateutil.zoneinfo import gettz
5025
tz = lambda x: tzutc() if x == 'UTC' else gettz(x) # handle special case for utc in dateutil
5026
5027
from pandas import date_range
0 commit comments