From 8ff3fa6382a46a82f3addacc60699709887a3188 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 2 Mar 2023 20:11:53 -0800 Subject: [PATCH] Update pytz==2022.7.1 --- lib/pytz/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/pytz/__init__.py b/lib/pytz/__init__.py index 4fdc9a7e..11d2e2ca 100644 --- a/lib/pytz/__init__.py +++ b/lib/pytz/__init__.py @@ -23,7 +23,7 @@ from pytz.tzfile import build_tzinfo # The IANA (nee Olson) database is updated several times a year. OLSON_VERSION = '2022g' -VERSION = '2022.7' # pip compatible version number. +VERSION = '2022.7.1' # pip compatible version number. __version__ = VERSION OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling @@ -202,9 +202,7 @@ def _case_insensitive_zone_lookup(zone): """case-insensitively matching timezone, else return zone unchanged""" global _all_timezones_lower_to_standard if _all_timezones_lower_to_standard is None: - global _all_timezones_unchecked _all_timezones_lower_to_standard = dict((tz.lower(), tz) for tz in _all_timezones_unchecked) # noqa - del _all_timezones_unchecked return _all_timezones_lower_to_standard.get(zone.lower()) or zone # noqa