Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pytz for openSUSE:Factory 
checked in at 2022-09-25 15:34:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytz (Old)
 and      /work/SRC/openSUSE:Factory/.python-pytz.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pytz"

Sun Sep 25 15:34:11 2022 rev:46 rq:1005454 version:2022.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pytz/python-pytz.changes  2022-04-02 
18:20:36.290231806 +0200
+++ /work/SRC/openSUSE:Factory/.python-pytz.new.2275/python-pytz.changes        
2022-09-25 15:34:14.879470463 +0200
@@ -1,0 +2,7 @@
+Mon Aug 15 20:10:16 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 2022.2.1:
+  * matches tzdata 2022b
+- avoid bashisms in rpm scripts (bsc#1195391) 
+
+-------------------------------------------------------------------

Old:
----
  pytz-2022.1.tar.gz
  pytz-2022.1.tar.gz.asc

New:
----
  pytz-2022.2.1.tar.gz
  pytz-2022.2.1.tar.gz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pytz.spec ++++++
--- /var/tmp/diff_new_pack.iDqRhr/_old  2022-09-25 15:34:15.435471802 +0200
+++ /var/tmp/diff_new_pack.iDqRhr/_new  2022-09-25 15:34:15.439471812 +0200
@@ -18,7 +18,7 @@
 
 # Ensure you update the tzdata_version for any minor version increase
 # otherwise the update python library has the incorrect timezone data.
-%define tzdata_version 2022a
+%define tzdata_version 2022b
 %define oldpython python
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %{?!pyunittest:%define 
pyunittest(+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-=) 
\\\
@@ -29,7 +29,7 @@
     } }
 
 Name:           python-pytz
-Version:        2022.1
+Version:        2022.2.1
 Release:        0
 Summary:        World timezone definitions, modern and historical
 License:        MIT
@@ -91,7 +91,7 @@
 
 %pre
 if [ $1 -gt 1 ] ; then
-[ "$(readlink -e %{python_sitelib}/pytz/zoneinfo)" == 
"%{python_sitelib}/pytz/zoneinfo" ] && rm -rf %{python_sitelib}/pytz/zoneinfo
+[ "$(readlink -e %{python_sitelib}/pytz/zoneinfo)" = 
"%{python_sitelib}/pytz/zoneinfo" ] && rm -rf %{python_sitelib}/pytz/zoneinfo
 fi || :
 
 %files %{python_files}

++++++ 0001-Fix-tests-for-older-timezone-versions.patch ++++++
--- /var/tmp/diff_new_pack.iDqRhr/_old  2022-09-25 15:34:15.459471860 +0200
+++ /var/tmp/diff_new_pack.iDqRhr/_new  2022-09-25 15:34:15.463471869 +0200
@@ -8,9 +8,11 @@
  src/pytz/tests/test_tzinfo.py | 26 ++++++++++++++------------
  1 file changed, 14 insertions(+), 12 deletions(-)
 
---- a/pytz/tests/test_tzinfo.py
-+++ b/pytz/tests/test_tzinfo.py
-@@ -247,12 +247,13 @@ class USEasternDSTStartTestCase(unittest
+Index: pytz-2022.2.1/pytz/tests/test_tzinfo.py
+===================================================================
+--- pytz-2022.2.1.orig/pytz/tests/test_tzinfo.py
++++ pytz-2022.2.1/pytz/tests/test_tzinfo.py
+@@ -253,12 +253,13 @@ class USEasternDSTStartTestCase(unittest
  
      def _test_tzname(self, utc_dt, wanted):
          tzname = wanted['tzname']
@@ -29,7 +31,7 @@
          )
  
      def _test_utcoffset(self, utc_dt, wanted):
-@@ -510,7 +511,7 @@ class NoumeaHistoryStartTestCase(USEaste
+@@ -516,7 +517,7 @@ class NoumeaHistoryStartTestCase(USEaste
          'dst': timedelta(0),
      }
      after = {
@@ -38,7 +40,7 @@
          'utcoffset': timedelta(hours=11),
          'dst': timedelta(0),
      }
-@@ -521,12 +522,12 @@ class NoumeaDSTEndTestCase(USEasternDSTS
+@@ -527,12 +528,12 @@ class NoumeaDSTEndTestCase(USEasternDSTS
      tzinfo = pytz.timezone('Pacific/Noumea')
      transition_time = datetime(1997, 3, 1, 15, 00, 00, tzinfo=UTC)
      before = {
@@ -53,7 +55,7 @@
          'utcoffset': timedelta(hours=11),
          'dst': timedelta(0),
      }
-@@ -550,7 +551,7 @@ class TahitiTestCase(USEasternDSTStartTe
+@@ -556,7 +557,7 @@ class TahitiTestCase(USEasternDSTStartTe
          'dst': timedelta(0),
      }
      after = {
@@ -62,7 +64,7 @@
          'utcoffset': timedelta(hours=-10),
          'dst': timedelta(0),
      }
-@@ -563,12 +564,12 @@ class SamoaInternationalDateLineChange(U
+@@ -569,12 +570,12 @@ class SamoaInternationalDateLineChange(U
      tzinfo = pytz.timezone('Pacific/Apia')
      transition_time = datetime(2011, 12, 30, 10, 0, 0, tzinfo=UTC)
      before = {
@@ -77,13 +79,4 @@
          'utcoffset': timedelta(hours=14),
          'dst': timedelta(hours=1),
      }
-@@ -618,7 +619,7 @@ class LocalTestCase(unittest.TestCase):
- 
-         loc_time = loc_tz.localize(datetime(1940, 5, 10, 0, 0, 0))
-         # pre-2017a, abbreviation was NCT
--        self.assertEqual(loc_time.strftime('%Z%z'), '+0020+0020')
-+        self.assertIn(loc_time.strftime('%Z%z'), ['NET+0020', '+0020+0020'])
- 
-         loc_time = loc_tz.localize(datetime(1940, 5, 20, 0, 0, 0))
-         self.assertEqual(loc_time.strftime('%Z%z'), 'CEST+0200')
 

++++++ fix-tests.patch ++++++
--- /var/tmp/diff_new_pack.iDqRhr/_old  2022-09-25 15:34:15.479471908 +0200
+++ /var/tmp/diff_new_pack.iDqRhr/_new  2022-09-25 15:34:15.483471918 +0200
@@ -1,7 +1,9 @@
---- a/pytz/tests/test_tzinfo.py
-+++ b/pytz/tests/test_tzinfo.py
-@@ -726,15 +726,6 @@ class LocalTestCase(unittest.TestCase):
-             '1914-01-01 13:40:00 UTC+0000'
+Index: pytz-2022.2.1/pytz/tests/test_tzinfo.py
+===================================================================
+--- pytz-2022.2.1.orig/pytz/tests/test_tzinfo.py
++++ pytz-2022.2.1/pytz/tests/test_tzinfo.py
+@@ -685,15 +685,6 @@ class LocalTestCase(unittest.TestCase):
+             '2004-04-04 01:50:00 EST-0500'
          )
  
 -    def no_testCreateLocaltime(self):


++++++ pytz-2022.1.tar.gz -> pytz-2022.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/PKG-INFO new/pytz-2022.2.1/PKG-INFO
--- old/pytz-2022.1/PKG-INFO    2022-03-20 01:31:17.467408000 +0100
+++ new/pytz-2022.2.1/PKG-INFO  2022-08-13 04:04:43.382436500 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: pytz
-Version: 2022.1
+Version: 2022.2.1
 Summary: World timezone definitions, modern and historical
 Home-page: http://pythonhosted.org/pytz
 Author: Stuart Bishop
@@ -102,7 +102,7 @@
         constructors ''does not work'' with pytz for many timezones.
         
         >>> datetime(2002, 10, 27, 12, 0, 0, tzinfo=amsterdam).strftime(fmt)  
# /!\ Does not work this way!
-        '2002-10-27 12:00:00 LMT+0020'
+        '2002-10-27 12:00:00 LMT+0018'
         
         It is safe for timezones without daylight saving transitions though, 
such
         as UTC:
@@ -596,7 +596,7 @@
         ~~~~~~~~~~~~~~~
         
         More info than you want to know about timezones:
-        http://www.twinsun.com/tz/tz-link.htm
+        https://data.iana.org/time-zones/tz-link.html
         
         
         Contact
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/README.rst new/pytz-2022.2.1/README.rst
--- old/pytz-2022.1/README.rst  2022-03-20 01:24:29.000000000 +0100
+++ new/pytz-2022.2.1/README.rst        2022-08-13 04:04:38.000000000 +0200
@@ -91,7 +91,7 @@
 constructors ''does not work'' with pytz for many timezones.
 
 >>> datetime(2002, 10, 27, 12, 0, 0, tzinfo=amsterdam).strftime(fmt)  # /!\ 
 >>> Does not work this way!
-'2002-10-27 12:00:00 LMT+0020'
+'2002-10-27 12:00:00 LMT+0018'
 
 It is safe for timezones without daylight saving transitions though, such
 as UTC:
@@ -585,7 +585,7 @@
 ~~~~~~~~~~~~~~~
 
 More info than you want to know about timezones:
-http://www.twinsun.com/tz/tz-link.htm
+https://data.iana.org/time-zones/tz-link.html
 
 
 Contact
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/__init__.py 
new/pytz-2022.2.1/pytz/__init__.py
--- old/pytz-2022.1/pytz/__init__.py    2022-03-20 01:24:29.000000000 +0100
+++ new/pytz-2022.2.1/pytz/__init__.py  2022-08-13 04:04:38.000000000 +0200
@@ -22,8 +22,8 @@
 
 
 # The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2022a'
-VERSION = '2022.1'  # pip compatible version number.
+OLSON_VERSION = '2022b'
+VERSION = '2022.2.1'  # pip compatible version number.
 __version__ = VERSION
 
 OLSEN_VERSION = OLSON_VERSION  # Old releases had this misspelling
@@ -86,7 +86,7 @@
     """
     name_parts = name.lstrip('/').split('/')
     for part in name_parts:
-        if part == os.path.pardir or os.path.sep in part:
+        if part == os.path.pardir or os.sep in part:
             raise ValueError('Bad path segment: %r' % part)
     zoneinfo_dir = os.environ.get('PYTZ_TZDATADIR', None)
     if zoneinfo_dir is not None:
@@ -964,6 +964,7 @@
  'Europe/Kaliningrad',
  'Europe/Kiev',
  'Europe/Kirov',
+ 'Europe/Kyiv',
  'Europe/Lisbon',
  'Europe/Ljubljana',
  'Europe/London',
@@ -1456,8 +1457,8 @@
  'Europe/Istanbul',
  'Europe/Jersey',
  'Europe/Kaliningrad',
- 'Europe/Kiev',
  'Europe/Kirov',
+ 'Europe/Kyiv',
  'Europe/Lisbon',
  'Europe/Ljubljana',
  'Europe/London',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/tests/test_tzinfo.py 
new/pytz-2022.2.1/pytz/tests/test_tzinfo.py
--- old/pytz-2022.1/pytz/tests/test_tzinfo.py   2022-03-20 01:24:29.000000000 
+0100
+++ new/pytz-2022.2.1/pytz/tests/test_tzinfo.py 2022-08-13 04:04:38.000000000 
+0200
@@ -27,8 +27,8 @@
 
 # I test for expected version to ensure the correct version of pytz is
 # actually being tested.
-EXPECTED_VERSION = '2022.1'
-EXPECTED_OLSON_VERSION = '2022a'
+EXPECTED_VERSION = '2022.2.1'
+EXPECTED_OLSON_VERSION = '2022b'
 
 fmt = '%Y-%m-%d %H:%M:%S %Z%z'
 
@@ -612,33 +612,6 @@
 
 class LocalTestCase(unittest.TestCase):
     def testLocalize(self):
-        loc_tz = pytz.timezone('Europe/Amsterdam')
-
-        loc_time = loc_tz.localize(datetime(1930, 5, 10, 0, 0, 0))
-        # Actually +00:19:32, but Python datetime rounds this
-        self.assertEqual(loc_time.strftime('%Z%z'), 'AMT+0020')
-
-        loc_time = loc_tz.localize(datetime(1930, 5, 20, 0, 0, 0))
-        # Actually +00:19:32, but Python datetime rounds this
-        self.assertEqual(loc_time.strftime('%Z%z'), 'NST+0120')
-
-        loc_time = loc_tz.localize(datetime(1940, 5, 10, 0, 0, 0))
-        # pre-2017a, abbreviation was NCT
-        self.assertEqual(loc_time.strftime('%Z%z'), '+0020+0020')
-
-        loc_time = loc_tz.localize(datetime(1940, 5, 20, 0, 0, 0))
-        self.assertEqual(loc_time.strftime('%Z%z'), 'CEST+0200')
-
-        loc_time = loc_tz.localize(datetime(2004, 2, 1, 0, 0, 0))
-        self.assertEqual(loc_time.strftime('%Z%z'), 'CET+0100')
-
-        loc_time = loc_tz.localize(datetime(2004, 4, 1, 0, 0, 0))
-        self.assertEqual(loc_time.strftime('%Z%z'), 'CEST+0200')
-
-        loc_time = loc_tz.localize(datetime(1943, 3, 29, 1, 59, 59))
-        self.assertEqual(loc_time.strftime('%Z%z'), 'CET+0100')
-
-        # Switch to US
         loc_tz = pytz.timezone('US/Eastern')
 
         # End of DST ambiguity check
@@ -712,26 +685,6 @@
             '2004-04-04 01:50:00 EST-0500'
         )
 
-    def testPartialMinuteOffsets(self):
-        # utcoffset in Amsterdam was not a whole minute until 1937
-        # However, we fudge this by rounding them, as the Python
-        # datetime library
-        tz = pytz.timezone('Europe/Amsterdam')
-        utc_dt = datetime(1914, 1, 1, 13, 40, 28, tzinfo=UTC)  # correct
-        utc_dt = utc_dt.replace(second=0)  # But we need to fudge it
-        loc_dt = utc_dt.astimezone(tz)
-        self.assertEqual(
-            loc_dt.strftime('%Y-%m-%d %H:%M:%S %Z%z'),
-            '1914-01-01 14:00:00 AMT+0020'
-        )
-
-        # And get back...
-        utc_dt = loc_dt.astimezone(UTC)
-        self.assertEqual(
-            utc_dt.strftime('%Y-%m-%d %H:%M:%S %Z%z'),
-            '1914-01-01 13:40:00 UTC+0000'
-        )
-
     def no_testCreateLocaltime(self):
         # It would be nice if this worked, but it doesn't.
         tz = pytz.timezone('Europe/Amsterdam')
@@ -758,7 +711,6 @@
         self.assertTrue('US/Eastern' in pytz.common_timezones_set)
 
     def test_belfast(self):
-        # Belfast uses London time.
         self.assertTrue('Europe/Belfast' in pytz.all_timezones_set)
         self.assertFalse('Europe/Belfast' in pytz.common_timezones)
         self.assertFalse('Europe/Belfast' in pytz.common_timezones_set)
Binary files old/pytz-2022.1/pytz/zoneinfo/America/New_York and 
new/pytz-2022.2.1/pytz/zoneinfo/America/New_York differ
Binary files old/pytz-2022.1/pytz/zoneinfo/America/Punta_Arenas and 
new/pytz-2022.2.1/pytz/zoneinfo/America/Punta_Arenas differ
Binary files old/pytz-2022.1/pytz/zoneinfo/America/Santiago and 
new/pytz-2022.2.1/pytz/zoneinfo/America/Santiago differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Antarctica/Vostok and 
new/pytz-2022.2.1/pytz/zoneinfo/Antarctica/Vostok differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Arctic/Longyearbyen and 
new/pytz-2022.2.1/pytz/zoneinfo/Arctic/Longyearbyen differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Brunei and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Brunei differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Ho_Chi_Minh and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Ho_Chi_Minh differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Hong_Kong and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Hong_Kong differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Jakarta and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Jakarta differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Kuala_Lumpur and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Kuala_Lumpur differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Saigon and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Saigon differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Asia/Tehran and 
new/pytz-2022.2.1/pytz/zoneinfo/Asia/Tehran differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Atlantic/Jan_Mayen and 
new/pytz-2022.2.1/pytz/zoneinfo/Atlantic/Jan_Mayen differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Atlantic/Reykjavik and 
new/pytz-2022.2.1/pytz/zoneinfo/Atlantic/Reykjavik differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Chile/Continental and 
new/pytz-2022.2.1/pytz/zoneinfo/Chile/Continental differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Chile/EasterIsland and 
new/pytz-2022.2.1/pytz/zoneinfo/Chile/EasterIsland differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Eire and 
new/pytz-2022.2.1/pytz/zoneinfo/Eire differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Amsterdam and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Amsterdam differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Belfast and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Belfast differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Copenhagen and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Copenhagen differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Dublin and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Dublin differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Gibraltar and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Gibraltar differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Guernsey and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Guernsey differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Isle_of_Man and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Isle_of_Man differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Jersey and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Jersey differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Kyiv and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Kyiv differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/London and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/London differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Luxembourg and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Luxembourg differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Madrid and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Madrid differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Malta and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Malta differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Monaco and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Monaco differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Oslo and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Oslo differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Rome and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Rome differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/San_Marino and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/San_Marino differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Simferopol and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Simferopol differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Stockholm and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Stockholm differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Europe/Vatican and 
new/pytz-2022.2.1/pytz/zoneinfo/Europe/Vatican differ
Binary files old/pytz-2022.1/pytz/zoneinfo/GB and 
new/pytz-2022.2.1/pytz/zoneinfo/GB differ
Binary files old/pytz-2022.1/pytz/zoneinfo/GB-Eire and 
new/pytz-2022.2.1/pytz/zoneinfo/GB-Eire differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Hongkong and 
new/pytz-2022.2.1/pytz/zoneinfo/Hongkong differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Iceland and 
new/pytz-2022.2.1/pytz/zoneinfo/Iceland differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Indian/Christmas and 
new/pytz-2022.2.1/pytz/zoneinfo/Indian/Christmas differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Indian/Cocos and 
new/pytz-2022.2.1/pytz/zoneinfo/Indian/Cocos differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Indian/Kerguelen and 
new/pytz-2022.2.1/pytz/zoneinfo/Indian/Kerguelen differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Indian/Mahe and 
new/pytz-2022.2.1/pytz/zoneinfo/Indian/Mahe differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Indian/Reunion and 
new/pytz-2022.2.1/pytz/zoneinfo/Indian/Reunion differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Iran and 
new/pytz-2022.2.1/pytz/zoneinfo/Iran differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Chuuk and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Chuuk differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Easter and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Easter differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Funafuti and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Funafuti differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Majuro and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Majuro differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Pohnpei and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Pohnpei differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Ponape and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Ponape differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Truk and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Truk differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Wake and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Wake differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Wallis and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Wallis differ
Binary files old/pytz-2022.1/pytz/zoneinfo/Pacific/Yap and 
new/pytz-2022.2.1/pytz/zoneinfo/Pacific/Yap differ
Binary files old/pytz-2022.1/pytz/zoneinfo/US/Eastern and 
new/pytz-2022.2.1/pytz/zoneinfo/US/Eastern differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/zoneinfo/leapseconds 
new/pytz-2022.2.1/pytz/zoneinfo/leapseconds
--- old/pytz-2022.1/pytz/zoneinfo/leapseconds   2022-03-20 01:24:25.000000000 
+0100
+++ new/pytz-2022.2.1/pytz/zoneinfo/leapseconds 2022-08-13 04:04:35.000000000 
+0200
@@ -72,11 +72,11 @@
 # Any additional leap seconds will come after this.
 # This Expires line is commented out for now,
 # so that pre-2020a zic implementations do not reject this file.
-#Expires 2022  Dec     28      00:00:00
+#Expires 2023  Jun     28      00:00:00
 
 # POSIX timestamps for the data in this file:
 #updated 1467936000 (2016-07-08 00:00:00 UTC)
-#expires 1672185600 (2022-12-28 00:00:00 UTC)
+#expires 1687910400 (2023-06-28 00:00:00 UTC)
 
-#      Updated through IERS Bulletin C63
-#      File expires on:  28 December 2022
+#      Updated through IERS Bulletin C64
+#      File expires on:  28 June 2023
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/zoneinfo/tzdata.zi 
new/pytz-2022.2.1/pytz/zoneinfo/tzdata.zi
--- old/pytz-2022.1/pytz/zoneinfo/tzdata.zi     2022-03-20 01:24:25.000000000 
+0100
+++ new/pytz-2022.2.1/pytz/zoneinfo/tzdata.zi   2022-08-13 04:04:35.000000000 
+0200
@@ -52,6 +52,7 @@
 L Africa/Abidjan Africa/Lome
 L Africa/Abidjan Africa/Nouakchott
 L Africa/Abidjan Africa/Ouagadougou
+L Africa/Abidjan Atlantic/Reykjavik
 L Africa/Abidjan Atlantic/St_Helena
 R K 1940 o - Jul 15 0 1 S
 R K 1940 o - O 1 0 0 -
@@ -365,15 +366,11 @@
 L Africa/Lagos Africa/Malabo
 L Africa/Lagos Africa/Niamey
 L Africa/Lagos Africa/Porto-Novo
-Z Indian/Reunion 3:41:52 - LMT 1911 Jun
-4 - +04
 Z Africa/Sao_Tome 0:26:56 - LMT 1884
 -0:36:45 - LMT 1912 Ja 1 0u
 0 - GMT 2018 Ja 1 1
 1 - WAT 2019 Ja 1 2
 0 - GMT
-Z Indian/Mahe 3:41:48 - LMT 1907
-4 - +04
 R SA 1942 1943 - S Su>=15 2 1 -
 R SA 1943 1944 - Mar Su>=15 2 0 -
 Z Africa/Johannesburg 1:52 - LMT 1892 F 8
@@ -445,14 +442,10 @@
 Z Antarctica/Mawson 0 - -00 1954 F 13
 6 - +06 2009 O 18 2
 5 - +05
-Z Indian/Kerguelen 0 - -00 1950
-5 - +05
 R Tr 2005 ma - Mar lastSu 1u 2 +02
 R Tr 2004 ma - O lastSu 1u 0 +00
 Z Antarctica/Troll 0 - -00 2005 F 12
 0 Tr %s
-Z Antarctica/Vostok 0 - -00 1957 D 16
-6 - +06
 Z Antarctica/Rothera 0 - -00 1976 D
 -3 - -03
 Z Asia/Kabul 4:36:48 - LMT 1890
@@ -491,14 +484,12 @@
 Z Indian/Chagos 4:49:40 - LMT 1907
 5 - +05 1996
 6 - +06
-Z Asia/Brunei 7:39:40 - LMT 1926 Mar
-7:30 - +0730 1933
-8 - +08
 Z Asia/Yangon 6:24:47 - LMT 1880
 6:24:47 - RMT 1920
 6:30 - +0630 1942 May
 9 - +09 1945 May 3
 6:30 - +0630
+L Asia/Yangon Indian/Cocos
 R Sh 1919 o - Ap 12 24 1 D
 R Sh 1919 o - S 30 24 0 S
 R Sh 1940 o - Jun 1 0 1 D
@@ -521,6 +512,7 @@
 8 CN C%sT
 Z Asia/Urumqi 5:50:20 - LMT 1928
 6 - +06
+L Asia/Urumqi Antarctica/Vostok
 R HK 1946 o - Ap 21 0 1 S
 R HK 1946 o - D 1 3:30s 0 -
 R HK 1947 o - Ap 13 3:30s 1 S
@@ -535,7 +527,7 @@
 R HK 1973 o - D 30 3:30 1 S
 R HK 1979 o - May 13 3:30 1 S
 R HK 1979 o - O 21 3:30 0 -
-Z Asia/Hong_Kong 7:36:42 - LMT 1904 O 30 0:36:42
+Z Asia/Hong_Kong 7:36:42 - LMT 1904 O 29 17u
 8 - HKT 1941 Jun 15 3
 8 1 HKST 1941 O 1 4
 8 0:30 HKWT 1941 D 25
@@ -634,7 +626,7 @@
 5:30 1 +0630 1945 O 15
 5:30 - IST
 Z Asia/Jakarta 7:7:12 - LMT 1867 Au 10
-7:7:12 - BMT 1923 D 31 23:47:12
+7:7:12 - BMT 1923 D 31 16:40u
 7:20 - +0720 1932 N
 7:30 - +0730 1942 Mar 23
 9 - +09 1945 S 23
@@ -660,9 +652,14 @@
 9 - +09 1944 S
 9:30 - +0930 1964
 9 - WIT
-R i 1978 1980 - Mar 20 24 1 -
-R i 1978 o - O 20 24 0 -
+R i 1910 o - Ja 1 0 0 -
+R i 1977 o - Mar 21 23 1 -
+R i 1977 o - O 20 24 0 -
+R i 1978 o - Mar 24 24 1 -
+R i 1978 o - Au 5 1 0 -
+R i 1979 o - May 26 24 1 -
 R i 1979 o - S 18 24 0 -
+R i 1980 o - Mar 20 24 1 -
 R i 1980 o - S 22 24 0 -
 R i 1991 o - May 2 24 1 -
 R i 1992 1995 - Mar 21 24 1 -
@@ -693,77 +690,11 @@
 R i 2017 2019 - S 21 24 0 -
 R i 2020 o - Mar 20 24 1 -
 R i 2020 o - S 20 24 0 -
-R i 2021 2023 - Mar 21 24 1 -
-R i 2021 2023 - S 21 24 0 -
-R i 2024 o - Mar 20 24 1 -
-R i 2024 o - S 20 24 0 -
-R i 2025 2027 - Mar 21 24 1 -
-R i 2025 2027 - S 21 24 0 -
-R i 2028 2029 - Mar 20 24 1 -
-R i 2028 2029 - S 20 24 0 -
-R i 2030 2031 - Mar 21 24 1 -
-R i 2030 2031 - S 21 24 0 -
-R i 2032 2033 - Mar 20 24 1 -
-R i 2032 2033 - S 20 24 0 -
-R i 2034 2035 - Mar 21 24 1 -
-R i 2034 2035 - S 21 24 0 -
-R i 2036 2037 - Mar 20 24 1 -
-R i 2036 2037 - S 20 24 0 -
-R i 2038 2039 - Mar 21 24 1 -
-R i 2038 2039 - S 21 24 0 -
-R i 2040 2041 - Mar 20 24 1 -
-R i 2040 2041 - S 20 24 0 -
-R i 2042 2043 - Mar 21 24 1 -
-R i 2042 2043 - S 21 24 0 -
-R i 2044 2045 - Mar 20 24 1 -
-R i 2044 2045 - S 20 24 0 -
-R i 2046 2047 - Mar 21 24 1 -
-R i 2046 2047 - S 21 24 0 -
-R i 2048 2049 - Mar 20 24 1 -
-R i 2048 2049 - S 20 24 0 -
-R i 2050 2051 - Mar 21 24 1 -
-R i 2050 2051 - S 21 24 0 -
-R i 2052 2053 - Mar 20 24 1 -
-R i 2052 2053 - S 20 24 0 -
-R i 2054 2055 - Mar 21 24 1 -
-R i 2054 2055 - S 21 24 0 -
-R i 2056 2057 - Mar 20 24 1 -
-R i 2056 2057 - S 20 24 0 -
-R i 2058 2059 - Mar 21 24 1 -
-R i 2058 2059 - S 21 24 0 -
-R i 2060 2062 - Mar 20 24 1 -
-R i 2060 2062 - S 20 24 0 -
-R i 2063 o - Mar 21 24 1 -
-R i 2063 o - S 21 24 0 -
-R i 2064 2066 - Mar 20 24 1 -
-R i 2064 2066 - S 20 24 0 -
-R i 2067 o - Mar 21 24 1 -
-R i 2067 o - S 21 24 0 -
-R i 2068 2070 - Mar 20 24 1 -
-R i 2068 2070 - S 20 24 0 -
-R i 2071 o - Mar 21 24 1 -
-R i 2071 o - S 21 24 0 -
-R i 2072 2074 - Mar 20 24 1 -
-R i 2072 2074 - S 20 24 0 -
-R i 2075 o - Mar 21 24 1 -
-R i 2075 o - S 21 24 0 -
-R i 2076 2078 - Mar 20 24 1 -
-R i 2076 2078 - S 20 24 0 -
-R i 2079 o - Mar 21 24 1 -
-R i 2079 o - S 21 24 0 -
-R i 2080 2082 - Mar 20 24 1 -
-R i 2080 2082 - S 20 24 0 -
-R i 2083 o - Mar 21 24 1 -
-R i 2083 o - S 21 24 0 -
-R i 2084 2086 - Mar 20 24 1 -
-R i 2084 2086 - S 20 24 0 -
-R i 2087 o - Mar 21 24 1 -
-R i 2087 o - S 21 24 0 -
-R i 2088 ma - Mar 20 24 1 -
-R i 2088 ma - S 20 24 0 -
+R i 2021 2022 - Mar 21 24 1 -
+R i 2021 2022 - S 21 24 0 -
 Z Asia/Tehran 3:25:44 - LMT 1916
-3:25:44 - TMT 1946
-3:30 - +0330 1977 N
+3:25:44 - TMT 1935 Jun 13
+3:30 i +0330/+0430 1977 O 20 24
 4 i +04/+05 1979
 3:30 i +0330/+0430
 R IQ 1982 o - May 1 0 1 -
@@ -1034,23 +965,16 @@
 2 l EE%sT
 R NB 1935 1941 - S 14 0 0:20 -
 R NB 1935 1941 - D 14 0 0 -
-Z Asia/Kuala_Lumpur 6:46:46 - LMT 1901
-6:55:25 - SMT 1905 Jun
-7 - +07 1933
-7 0:20 +0720 1936
-7:20 - +0720 1941 S
-7:30 - +0730 1942 F 16
-9 - +09 1945 S 12
-7:30 - +0730 1982
-8 - +08
 Z Asia/Kuching 7:21:20 - LMT 1926 Mar
 7:30 - +0730 1933
 8 NB +08/+0820 1942 F 16
 9 - +09 1945 S 12
 8 - +08
+L Asia/Kuching Asia/Brunei
 Z Indian/Maldives 4:54 - LMT 1880
 4:54 - MMT 1960
 5 - +05
+L Indian/Maldives Indian/Kerguelen
 R X 1983 1984 - Ap 1 0 1 -
 R X 1983 o - O 1 0 0 -
 R X 1985 1998 - Mar lastSu 0 1 -
@@ -1162,6 +1086,7 @@
 9 - +09 1945 S 12
 7:30 - +0730 1982
 8 - +08
+L Asia/Singapore Asia/Kuala_Lumpur
 Z Asia/Colombo 5:19:24 - LMT 1880
 5:19:32 - MMT 1906
 5:30 - +0530 1942 Ja 5
@@ -1217,13 +1142,14 @@
 Z Asia/Dushanbe 4:35:12 - LMT 1924 May 2
 5 - +05 1930 Jun 21
 6 R +06/+07 1991 Mar 31 2s
-5 1 +05/+06 1991 S 9 2s
+5 1 +06 1991 S 9 2s
 5 - +05
 Z Asia/Bangkok 6:42:4 - LMT 1880
 6:42:4 - BMT 1920 Ap
 7 - +07
 L Asia/Bangkok Asia/Phnom_Penh
 L Asia/Bangkok Asia/Vientiane
+L Asia/Bangkok Indian/Christmas
 Z Asia/Ashgabat 3:53:32 - LMT 1924 May 2
 4 - +04 1930 Jun 21
 5 R +05/+06 1991 Mar 31 2
@@ -1232,6 +1158,8 @@
 Z Asia/Dubai 3:41:12 - LMT 1920
 4 - +04
 L Asia/Dubai Asia/Muscat
+L Asia/Dubai Indian/Mahe
+L Asia/Dubai Indian/Reunion
 Z Asia/Samarkand 4:27:53 - LMT 1924 May 2
 4 - +04 1930 Jun 21
 5 - +05 1981 Ap
@@ -1244,7 +1172,7 @@
 6 R +06/+07 1991 Mar 31 2
 5 R +05/+06 1992
 5 - +05
-Z Asia/Ho_Chi_Minh 7:6:40 - LMT 1906 Jul
+Z Asia/Ho_Chi_Minh 7:6:30 - LMT 1906 Jul
 7:6:30 - PLMT 1911 May
 7 - +07 1942 D 31 23
 8 - +08 1945 Mar 14 23
@@ -1407,10 +1335,6 @@
 10 AT AE%sT 2010
 10 1 AEDT 2011
 10 AT AE%sT
-Z Indian/Christmas 7:2:52 - LMT 1895 F
-7 - +07
-Z Indian/Cocos 6:27:40 - LMT 1900
-6:30 - +0630
 R FJ 1998 1999 - N Su>=1 2 1 -
 R FJ 1999 2000 - F lastSu 3 0 -
 R FJ 2009 o - N 29 2 1 -
@@ -1456,6 +1380,10 @@
 L Pacific/Guam Pacific/Saipan
 Z Pacific/Tarawa 11:32:4 - LMT 1901
 12 - +12
+L Pacific/Tarawa Pacific/Funafuti
+L Pacific/Tarawa Pacific/Majuro
+L Pacific/Tarawa Pacific/Wake
+L Pacific/Tarawa Pacific/Wallis
 Z Pacific/Kanton 0 - -00 1937 Au 31
 -12 - -12 1979 O
 -11 - -11 1994 D 31
@@ -1464,14 +1392,6 @@
 -10:40 - -1040 1979 O
 -10 - -10 1994 D 31
 14 - +14
-Z Pacific/Majuro 11:24:48 - LMT 1901
-11 - +11 1914 O
-9 - +09 1919 F
-11 - +11 1937
-10 - +10 1941 Ap
-9 - +09 1944 Ja 30
-11 - +11 1969 O
-12 - +12
 Z Pacific/Kwajalein 11:9:20 - LMT 1901
 11 - +11 1937
 10 - +10 1941 Ap
@@ -1479,21 +1399,6 @@
 11 - +11 1969 O
 -12 - -12 1993 Au 20 24
 12 - +12
-Z Pacific/Chuuk -13:52:52 - LMT 1844 D 31
-10:7:8 - LMT 1901
-10 - +10 1914 O
-9 - +09 1919 F
-10 - +10 1941 Ap
-9 - +09 1945 Au
-10 - +10
-Z Pacific/Pohnpei -13:27:8 - LMT 1844 D 31
-10:32:52 - LMT 1901
-11 - +11 1914 O
-9 - +09 1919 F
-11 - +11 1937
-10 - +10 1941 Ap
-9 - +09 1945 Au
-11 - +11
 Z Pacific/Kosrae -13:8:4 - LMT 1844 D 31
 10:51:56 - LMT 1901
 11 - +11 1914 O
@@ -1543,10 +1448,10 @@
 Z Pacific/Auckland 11:39:4 - LMT 1868 N 2
 11:30 NZ NZ%sT 1946
 12 NZ NZ%sT
+L Pacific/Auckland Antarctica/McMurdo
 Z Pacific/Chatham 12:13:48 - LMT 1868 N 2
 12:15 - +1215 1946
 12:45 k +1245/+1345
-L Pacific/Auckland Antarctica/McMurdo
 R CK 1978 o - N 12 0 0:30 -
 R CK 1979 1991 - Mar Su>=1 0 0 -
 R CK 1979 1990 - O lastSu 0 0:30 -
@@ -1571,6 +1476,7 @@
 9:48:32 - PMMT 1895
 10 - +10
 L Pacific/Port_Moresby Antarctica/DumontDUrville
+L Pacific/Port_Moresby Pacific/Chuuk
 Z Pacific/Bougainville 10:22:16 - LMT 1880
 9:48:32 - PMMT 1895
 10 - +10 1942 Jul
@@ -1596,6 +1502,7 @@
 13 WS +13/+14
 Z Pacific/Guadalcanal 10:39:48 - LMT 1912 O
 11 - +11
+L Pacific/Guadalcanal Pacific/Pohnpei
 Z Pacific/Fakaofo -11:24:56 - LMT 1901
 -11 - -11 2011 D 30
 13 - +13
@@ -1609,10 +1516,6 @@
 12:20 - +1220 1961
 13 - +13 1999
 13 TO +13/+14
-Z Pacific/Funafuti 11:56:52 - LMT 1901
-12 - +12
-Z Pacific/Wake 11:6:28 - LMT 1901
-12 - +12
 R VU 1973 o - D 22 12u 1 -
 R VU 1974 o - Mar 30 12u 0 -
 R VU 1983 1991 - S Sa>=22 24 1 -
@@ -1621,8 +1524,6 @@
 R VU 1992 o - O Sa>=22 24 1 -
 Z Pacific/Efate 11:13:16 - LMT 1912 Ja 13
 11 VU +11/+12
-Z Pacific/Wallis 12:15:20 - LMT 1901
-12 - +12
 R G 1916 o - May 21 2s 1 BST
 R G 1916 o - O 1 2s 0 GMT
 R G 1917 o - Ap 8 2s 1 BST
@@ -1688,7 +1589,7 @@
 R G 1981 1995 - Mar lastSu 1u 1 BST
 R G 1981 1989 - O Su>=23 1u 0 GMT
 R G 1990 1995 - O Su>=22 1u 0 GMT
-Z Europe/London -0:1:15 - LMT 1847 D 1 0s
+Z Europe/London -0:1:15 - LMT 1847 D
 0 G %s 1968 O 27
 1 - BST 1971 O 31 2u
 0 G %s 1996
@@ -1703,7 +1604,7 @@
 R IE 1981 1989 - O Su>=23 1u -1 -
 R IE 1990 1995 - O Su>=22 1u -1 -
 R IE 1996 ma - O lastSu 1u -1 -
-Z Europe/Dublin -0:25 - LMT 1880 Au 2
+Z Europe/Dublin -0:25:21 - LMT 1880 Au 2
 -0:25:21 - DMT 1916 May 21 2s
 -0:25:21 1 IST 1916 O 1 2s
 0 G %s 1921 D 6
@@ -1871,6 +1772,8 @@
 1 c CE%sT 1944 S 3
 1 b CE%sT 1977
 1 E CE%sT
+L Europe/Brussels Europe/Amsterdam
+L Europe/Brussels Europe/Luxembourg
 R BG 1979 o - Mar 31 23 1 S
 R BG 1979 o - O 1 1 0 -
 R BG 1980 1982 - Ap Sa>=1 23 1 S
@@ -1899,23 +1802,7 @@
 1 -1 GMT 1947 F 23 2
 1 CZ CE%sT 1979
 1 E CE%sT
-R D 1916 o - May 14 23 1 S
-R D 1916 o - S 30 23 0 -
-R D 1940 o - May 15 0 1 S
-R D 1945 o - Ap 2 2s 1 S
-R D 1945 o - Au 15 2s 0 -
-R D 1946 o - May 1 2s 1 S
-R D 1946 o - S 1 2s 0 -
-R D 1947 o - May 4 2s 1 S
-R D 1947 o - Au 10 2s 0 -
-R D 1948 o - May 9 2s 1 S
-R D 1948 o - Au 8 2s 0 -
-Z Europe/Copenhagen 0:50:20 - LMT 1890
-0:50:20 - CMT 1894
-1 D CE%sT 1942 N 2 2s
-1 c CE%sT 1945 Ap 2 2
-1 D CE%sT 1980
-1 E CE%sT
+L Europe/Prague Europe/Bratislava
 Z Atlantic/Faroe -0:27:4 - LMT 1908 Ja 11
 0 - WET 1981
 0 E WE%sT
@@ -2009,6 +1896,7 @@
 0 F WE%sT 1945 S 16 3
 1 F CE%sT 1977
 1 E CE%sT
+L Europe/Paris Europe/Monaco
 R DE 1946 o - Ap 14 2s 1 S
 R DE 1946 o - O 7 2s 0 -
 R DE 1947 1949 - O Su>=1 2s 0 -
@@ -2025,8 +1913,11 @@
 1 So CE%sT 1946
 1 DE CE%sT 1980
 1 E CE%sT
-L Europe/Zurich Europe/Busingen
-Z Europe/Gibraltar -0:21:24 - LMT 1880 Au 2 0s
+L Europe/Berlin Arctic/Longyearbyen
+L Europe/Berlin Europe/Copenhagen
+L Europe/Berlin Europe/Oslo
+L Europe/Berlin Europe/Stockholm
+Z Europe/Gibraltar -0:21:24 - LMT 1880 Au 2
 0 G %s 1957 Ap 14 2
 1 - CET 1982
 1 E CE%sT
@@ -2080,25 +1971,6 @@
 1 c CE%sT 1945
 1 h CE%sT 1984
 1 E CE%sT
-R w 1917 1919 - F 19 23 1 -
-R w 1917 o - O 21 1 0 -
-R w 1918 1919 - N 16 1 0 -
-R w 1921 o - Mar 19 23 1 -
-R w 1921 o - Jun 23 1 0 -
-R w 1939 o - Ap 29 23 1 -
-R w 1939 o - O 29 2 0 -
-R w 1940 o - F 25 2 1 -
-R w 1940 1941 - N Su>=2 1s 0 -
-R w 1941 1942 - Mar Su>=2 1s 1 -
-R w 1943 1946 - Mar Su>=1 1s 1 -
-R w 1942 1948 - O Su>=22 1s 0 -
-R w 1947 1967 - Ap Su>=1 1s 1 -
-R w 1949 o - O 30 1s 0 -
-R w 1950 1966 - O Su>=22 1s 0 -
-R w 1967 o - O 29 1s 0 -
-Z Atlantic/Reykjavik -1:28 - LMT 1908
--1 w -01/+00 1968 Ap 7 1s
-0 - GMT
 R I 1916 o - Jun 3 24 1 S
 R I 1916 1917 - S 30 24 0 -
 R I 1917 o - Mar 31 24 1 S
@@ -2141,7 +2013,7 @@
 R I 1978 o - O 1 0s 0 -
 R I 1979 o - S 30 0s 0 -
 Z Europe/Rome 0:49:56 - LMT 1866 D 12
-0:49:56 - RMT 1893 O 31 23:49:56
+0:49:56 - RMT 1893 O 31 23u
 1 I CE%sT 1943 S 10
 1 c CE%sT 1944 Jun 4
 1 I CE%sT 1980
@@ -2165,7 +2037,6 @@
 2 E EE%sT 2000 F 29
 2 - EET 2001 Ja 2
 2 E EE%sT
-L Europe/Zurich Europe/Vaduz
 Z Europe/Vilnius 1:41:16 - LMT 1880
 1:24 - WMT 1917
 1:35:36 - KMT 1919 O 10
@@ -2181,36 +2052,6 @@
 1 E CE%sT 1999 O 31 1u
 2 - EET 2003
 2 E EE%sT
-R LX 1916 o - May 14 23 1 S
-R LX 1916 o - O 1 1 0 -
-R LX 1917 o - Ap 28 23 1 S
-R LX 1917 o - S 17 1 0 -
-R LX 1918 o - Ap M>=15 2s 1 S
-R LX 1918 o - S M>=15 2s 0 -
-R LX 1919 o - Mar 1 23 1 S
-R LX 1919 o - O 5 3 0 -
-R LX 1920 o - F 14 23 1 S
-R LX 1920 o - O 24 2 0 -
-R LX 1921 o - Mar 14 23 1 S
-R LX 1921 o - O 26 2 0 -
-R LX 1922 o - Mar 25 23 1 S
-R LX 1922 o - O Su>=2 1 0 -
-R LX 1923 o - Ap 21 23 1 S
-R LX 1923 o - O Su>=2 2 0 -
-R LX 1924 o - Mar 29 23 1 S
-R LX 1924 1928 - O Su>=2 1 0 -
-R LX 1925 o - Ap 5 23 1 S
-R LX 1926 o - Ap 17 23 1 S
-R LX 1927 o - Ap 9 23 1 S
-R LX 1928 o - Ap 14 23 1 S
-R LX 1929 o - Ap 20 23 1 S
-Z Europe/Luxembourg 0:24:36 - LMT 1904 Jun
-1 LX CE%sT 1918 N 25
-0 LX WE%sT 1929 O 6 2s
-0 b WE%sT 1940 May 14 3
-1 c WE%sT 1944 S 18 3
-1 b CE%sT 1977
-1 E CE%sT
 R MT 1973 o - Mar 31 0s 1 S
 R MT 1973 o - S 29 0s 0 -
 R MT 1974 o - Ap 21 0s 1 S
@@ -2218,7 +2059,7 @@
 R MT 1975 1979 - Ap Su>=15 2 1 S
 R MT 1975 1980 - S Su>=15 2 0 -
 R MT 1980 o - Mar 31 2 1 S
-Z Europe/Malta 0:58:4 - LMT 1893 N 2 0s
+Z Europe/Malta 0:58:4 - LMT 1893 N 2
 1 I CE%sT 1973 Mar 31
 1 MT CE%sT 1981
 1 E CE%sT
@@ -2234,50 +2075,6 @@
 2 R EE%sT 1992
 2 e EE%sT 1997
 2 MD EE%sT
-Z Europe/Monaco 0:29:32 - LMT 1892 Jun
-0:9:21 - PMT 1911 Mar 29
-0 F WE%sT 1945 S 16 3
-1 F CE%sT 1977
-1 E CE%sT
-R N 1916 o - May 1 0 1 NST
-R N 1916 o - O 1 0 0 AMT
-R N 1917 o - Ap 16 2s 1 NST
-R N 1917 o - S 17 2s 0 AMT
-R N 1918 1921 - Ap M>=1 2s 1 NST
-R N 1918 1921 - S lastM 2s 0 AMT
-R N 1922 o - Mar lastSu 2s 1 NST
-R N 1922 1936 - O Su>=2 2s 0 AMT
-R N 1923 o - Jun F>=1 2s 1 NST
-R N 1924 o - Mar lastSu 2s 1 NST
-R N 1925 o - Jun F>=1 2s 1 NST
-R N 1926 1931 - May 15 2s 1 NST
-R N 1932 o - May 22 2s 1 NST
-R N 1933 1936 - May 15 2s 1 NST
-R N 1937 o - May 22 2s 1 NST
-R N 1937 o - Jul 1 0 1 S
-R N 1937 1939 - O Su>=2 2s 0 -
-R N 1938 1939 - May 15 2s 1 S
-R N 1945 o - Ap 2 2s 1 S
-R N 1945 o - S 16 2s 0 -
-Z Europe/Amsterdam 0:19:32 - LMT 1835
-0:19:32 N %s 1937 Jul
-0:20 N +0020/+0120 1940 May 16
-1 c CE%sT 1945 Ap 2 2
-1 N CE%sT 1977
-1 E CE%sT
-R NO 1916 o - May 22 1 1 S
-R NO 1916 o - S 30 0 0 -
-R NO 1945 o - Ap 2 2s 1 S
-R NO 1945 o - O 1 2s 0 -
-R NO 1959 1964 - Mar Su>=15 2s 1 S
-R NO 1959 1965 - S Su>=15 2s 0 -
-R NO 1965 o - Ap 25 2s 1 S
-Z Europe/Oslo 0:43 - LMT 1895
-1 NO CE%sT 1940 Au 10 23
-1 c CE%sT 1945 Ap 2 2
-1 NO CE%sT 1980
-1 E CE%sT
-L Europe/Oslo Arctic/Longyearbyen
 R O 1918 1919 - S 16 2s 0 -
 R O 1919 o - Ap 15 2s 1 S
 R O 1944 o - Ap 3 2s 1 S
@@ -2434,9 +2231,8 @@
 3 - MSK 1990 Jul 1 2
 2 - EET 1992 Mar 20
 2 c EE%sT 1994 May
-3 e MSK/MSD 1996 Mar 31 0s
+3 c MSK/MSD 1996 Mar 31 0s
 3 1 MSD 1996 O 27 3s
-3 R MSK/MSD 1997
 3 - MSK 1997 Mar lastSu 1u
 2 E EE%sT 2014 Mar 30 2
 4 - MSK 2014 O 26 2s
@@ -2652,7 +2448,6 @@
 L Europe/Belgrade Europe/Sarajevo
 L Europe/Belgrade Europe/Skopje
 L Europe/Belgrade Europe/Zagreb
-L Europe/Prague Europe/Bratislava
 R s 1918 o - Ap 15 23 1 S
 R s 1918 1919 - O 6 24s 0 -
 R s 1919 o - Ap 6 23 1 S
@@ -2692,7 +2487,7 @@
 R Sp 1977 o - S 28 0 0 -
 R Sp 1978 o - Jun 1 0 1 S
 R Sp 1978 o - Au 4 0 0 -
-Z Europe/Madrid -0:14:44 - LMT 1900 D 31 23:45:16
+Z Europe/Madrid -0:14:44 - LMT 1901 Ja 1 0u
 0 s WE%sT 1940 Mar 16 23
 1 s CE%sT 1979
 1 E CE%sT
@@ -2710,18 +2505,14 @@
 0 - WET 1980 Ap 6 0s
 0 1 WEST 1980 S 28 1u
 0 E WE%sT
-Z Europe/Stockholm 1:12:12 - LMT 1879
-1:0:14 - SET 1900
-1 - CET 1916 May 14 23
-1 1 CEST 1916 O 1 1
-1 - CET 1980
-1 E CE%sT
 R CH 1941 1942 - May M>=1 1 1 S
 R CH 1941 1942 - O M>=1 2 0 -
 Z Europe/Zurich 0:34:8 - LMT 1853 Jul 16
 0:29:46 - BMT 1894 Jun
 1 CH CE%sT 1981
 1 E CE%sT
+L Europe/Zurich Europe/Busingen
+L Europe/Zurich Europe/Vaduz
 R T 1916 o - May 1 0 1 S
 R T 1916 o - O 1 0 0 -
 R T 1920 o - Mar 28 0 1 S
@@ -2781,7 +2572,7 @@
 2 E EE%sT 2016 S 7
 3 - +03
 L Europe/Istanbul Asia/Istanbul
-Z Europe/Kiev 2:2:4 - LMT 1880
+Z Europe/Kyiv 2:2:4 - LMT 1880
 2:2:4 - KMT 1924 May 2
 2 - EET 1930 Jun 21
 3 - MSK 1941 S 20
@@ -2835,7 +2626,7 @@
 R NY 1921 1966 - Ap lastSu 2 1 D
 R NY 1921 1954 - S lastSu 2 0 S
 R NY 1955 1966 - O lastSu 2 0 S
-Z America/New_York -4:56:2 - LMT 1883 N 18 12:3:58
+Z America/New_York -4:56:2 - LMT 1883 N 18 17u
 -5 u E%sT 1920
 -5 NY E%sT 1942
 -5 u E%sT 1946
@@ -4089,7 +3880,9 @@
 R x 2016 2018 - May Su>=9 3u 0 -
 R x 2016 2018 - Au Su>=9 4u 1 -
 R x 2019 ma - Ap Su>=2 3u 0 -
-R x 2019 ma - S Su>=2 4u 1 -
+R x 2019 2021 - S Su>=2 4u 1 -
+R x 2022 o - S Su>=9 4u 1 -
+R x 2023 ma - S Su>=2 4u 1 -
 Z America/Santiago -4:42:45 - LMT 1890
 -4:42:45 - SMT 1910 Ja 10
 -5 - -05 1916 Jul
@@ -4099,9 +3892,9 @@
 -5 x -05/-04 1932 S
 -4 - -04 1942 Jun
 -5 - -05 1942 Au
--4 - -04 1946 Jul 15
--4 1 -03 1946 S
--4 - -04 1947 Ap
+-4 - -04 1946 Jul 14 24
+-4 1 -03 1946 Au 28 24
+-5 1 -04 1947 Mar 31 24
 -5 - -05 1947 May 21 23
 -4 x -04/-03
 Z America/Punta_Arenas -4:43:40 - LMT 1890
@@ -4113,7 +3906,8 @@
 -5 x -05/-04 1932 S
 -4 - -04 1942 Jun
 -5 - -05 1942 Au
--4 - -04 1947 Ap
+-4 - -04 1946 Au 28 24
+-5 1 -04 1947 Mar 31 24
 -5 - -05 1947 May 21 23
 -4 x -04/-03 2016 D 4
 -3 - -03
@@ -4352,7 +4146,7 @@
 L Asia/Makassar Asia/Ujung_Pandang
 L Asia/Ulaanbaatar Asia/Ulan_Bator
 L Atlantic/Faroe Atlantic/Faeroe
-L Europe/Oslo Atlantic/Jan_Mayen
+L Europe/Berlin Atlantic/Jan_Mayen
 L Australia/Sydney Australia/ACT
 L Australia/Sydney Australia/Canberra
 L Australia/Hobart Australia/Currie
@@ -4384,6 +4178,7 @@
 L Europe/Dublin Eire
 L Etc/UTC Etc/UCT
 L Europe/London Europe/Belfast
+L Europe/Kyiv Europe/Kiev
 L Europe/Chisinau Europe/Tiraspol
 L Europe/London GB
 L Europe/London GB-Eire
@@ -4392,7 +4187,7 @@
 L Etc/GMT GMT0
 L Etc/GMT Greenwich
 L Asia/Hong_Kong Hongkong
-L Atlantic/Reykjavik Iceland
+L Africa/Abidjan Iceland
 L Asia/Tehran Iran
 L Asia/Jerusalem Israel
 L America/Jamaica Jamaica
@@ -4408,10 +4203,10 @@
 L Asia/Shanghai PRC
 L Pacific/Kanton Pacific/Enderbury
 L Pacific/Honolulu Pacific/Johnston
-L Pacific/Pohnpei Pacific/Ponape
+L Pacific/Guadalcanal Pacific/Ponape
 L Pacific/Pago_Pago Pacific/Samoa
-L Pacific/Chuuk Pacific/Truk
-L Pacific/Chuuk Pacific/Yap
+L Pacific/Port_Moresby Pacific/Truk
+L Pacific/Port_Moresby Pacific/Yap
 L Europe/Warsaw Poland
 L Europe/Lisbon Portugal
 L Asia/Taipei ROC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/zoneinfo/zone.tab 
new/pytz-2022.2.1/pytz/zoneinfo/zone.tab
--- old/pytz-2022.1/pytz/zoneinfo/zone.tab      2022-03-20 01:24:25.000000000 
+0100
+++ new/pytz-2022.2.1/pytz/zoneinfo/zone.tab    2022-08-13 04:04:35.000000000 
+0200
@@ -130,7 +130,7 @@
 CA     +6227-11421     America/Yellowknife     Mountain - NT (central)
 CA     +682059-1334300 America/Inuvik  Mountain - NT (west)
 CA     +4906-11631     America/Creston MST - BC (Creston)
-CA     +5946-12014     America/Dawson_Creek    MST - BC (Dawson Cr, Ft St John)
+CA     +5546-12014     America/Dawson_Creek    MST - BC (Dawson Cr, Ft St John)
 CA     +5848-12242     America/Fort_Nelson     MST - BC (Ft Nelson)
 CA     +6043-13503     America/Whitehorse      MST - Yukon (east)
 CA     +6404-13925     America/Dawson  MST - Yukon (west)
@@ -400,7 +400,7 @@
 TV     -0831+17913     Pacific/Funafuti
 TW     +2503+12130     Asia/Taipei
 TZ     -0648+03917     Africa/Dar_es_Salaam
-UA     +5026+03031     Europe/Kiev     Ukraine (most areas)
+UA     +5026+03031     Europe/Kyiv     Ukraine (most areas)
 UA     +4837+02218     Europe/Uzhgorod Transcarpathia
 UA     +4750+03510     Europe/Zaporozhye       Zaporozhye and east Lugansk
 UG     +0019+03225     Africa/Kampala
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz/zoneinfo/zone1970.tab 
new/pytz-2022.2.1/pytz/zoneinfo/zone1970.tab
--- old/pytz-2022.1/pytz/zoneinfo/zone1970.tab  2022-03-20 01:24:25.000000000 
+0100
+++ new/pytz-2022.2.1/pytz/zoneinfo/zone1970.tab        2022-08-13 
04:04:35.000000000 +0200
@@ -34,7 +34,7 @@
 #country-
 #codes coordinates     TZ      comments
 AD     +4230+00131     Europe/Andorra
-AE,OM  +2518+05518     Asia/Dubai
+AE,OM,RE,SC,TF +2518+05518     Asia/Dubai      UAE, Oman, R??union, 
Seychelles, Crozet, Scattered Is
 AF     +3431+06912     Asia/Kabul
 AL     +4120+01950     Europe/Tirane
 AM     +4011+04430     Asia/Yerevan
@@ -44,7 +44,6 @@
 AQ     -6448-06406     Antarctica/Palmer       Palmer
 AQ     -6734-06808     Antarctica/Rothera      Rothera
 AQ     -720041+0023206 Antarctica/Troll        Troll
-AQ     -7824+10654     Antarctica/Vostok       Vostok
 AR     -3436-05827     America/Argentina/Buenos_Aires  Buenos Aires (BA, CF)
 AR     -3124-06411     America/Argentina/Cordoba       Argentina (most areas: 
CB, CC, CN, ER, FM, MN, SE, SF)
 AR     -2447-06525     America/Argentina/Salta Salta (SA, LP, NQ, RN)
@@ -74,10 +73,9 @@
 AZ     +4023+04951     Asia/Baku
 BB     +1306-05937     America/Barbados
 BD     +2343+09025     Asia/Dhaka
-BE     +5050+00420     Europe/Brussels
+BE,LU,NL       +5050+00420     Europe/Brussels
 BG     +4241+02319     Europe/Sofia
 BM     +3217-06446     Atlantic/Bermuda
-BN     +0456+11455     Asia/Brunei
 BO     -1630-06809     America/La_Paz
 BR     -0351-03225     America/Noronha Atlantic islands
 BR     -0127-04829     America/Belem   Par?? (east); Amap??
@@ -118,30 +116,27 @@
 CA     +690650-1050310 America/Cambridge_Bay   Mountain - NU (west)
 CA     +6227-11421     America/Yellowknife     Mountain - NT (central)
 CA     +682059-1334300 America/Inuvik  Mountain - NT (west)
-CA     +5946-12014     America/Dawson_Creek    MST - BC (Dawson Cr, Ft St John)
+CA     +5546-12014     America/Dawson_Creek    MST - BC (Dawson Cr, Ft St John)
 CA     +5848-12242     America/Fort_Nelson     MST - BC (Ft Nelson)
 CA     +6043-13503     America/Whitehorse      MST - Yukon (east)
 CA     +6404-13925     America/Dawson  MST - Yukon (west)
 CA     +4916-12307     America/Vancouver       Pacific - BC (most areas)
-CC     -1210+09655     Indian/Cocos
 CH,DE,LI       +4723+00832     Europe/Zurich   Swiss time
-CI,BF,GH,GM,GN,ML,MR,SH,SL,SN,TG       +0519-00402     Africa/Abidjan
+CI,BF,GH,GM,GN,IS,ML,MR,SH,SL,SN,TG    +0519-00402     Africa/Abidjan
 CK     -2114-15946     Pacific/Rarotonga
 CL     -3327-07040     America/Santiago        Chile (most areas)
 CL     -5309-07055     America/Punta_Arenas    Region of Magallanes
 CL     -2709-10926     Pacific/Easter  Easter Island
 CN     +3114+12128     Asia/Shanghai   Beijing Time
-CN     +4348+08735     Asia/Urumqi     Xinjiang Time
+CN,AQ  +4348+08735     Asia/Urumqi     Xinjiang Time, Vostok
 CO     +0436-07405     America/Bogota
 CR     +0956-08405     America/Costa_Rica
 CU     +2308-08222     America/Havana
 CV     +1455-02331     Atlantic/Cape_Verde
-CX     -1025+10543     Indian/Christmas
 CY     +3510+03322     Asia/Nicosia    Cyprus (most areas)
 CY     +3507+03357     Asia/Famagusta  Northern Cyprus
 CZ,SK  +5005+01426     Europe/Prague
-DE     +5230+01322     Europe/Berlin   Germany (most areas)
-DK     +5540+01235     Europe/Copenhagen
+DE,DK,NO,SE,SJ +5230+01322     Europe/Berlin   Germany (most areas), 
Scandinavia
 DO     +1828-06954     America/Santo_Domingo
 DZ     +3647+00303     Africa/Algiers
 EC     -0210-07950     America/Guayaquil       Ecuador (mainland)
@@ -155,11 +150,9 @@
 FI,AX  +6010+02458     Europe/Helsinki
 FJ     -1808+17825     Pacific/Fiji
 FK     -5142-05751     Atlantic/Stanley
-FM     +0725+15147     Pacific/Chuuk   Chuuk/Truk, Yap
-FM     +0658+15813     Pacific/Pohnpei Pohnpei/Ponape
 FM     +0519+16259     Pacific/Kosrae  Kosrae
 FO     +6201-00646     Atlantic/Faroe
-FR     +4852+00220     Europe/Paris
+FR,MC  +4852+00220     Europe/Paris
 GB,GG,IM,JE    +513030-0000731 Europe/London
 GE     +4143+04449     Asia/Tbilisi
 GF     +0456-05220     America/Cayenne
@@ -188,14 +181,13 @@
 IO     -0720+07225     Indian/Chagos
 IQ     +3321+04425     Asia/Baghdad
 IR     +3540+05126     Asia/Tehran
-IS     +6409-02151     Atlantic/Reykjavik
 IT,SM,VA       +4154+01229     Europe/Rome
 JM     +175805-0764736 America/Jamaica
 JO     +3157+03556     Asia/Amman
 JP     +353916+1394441 Asia/Tokyo
 KE,DJ,ER,ET,KM,MG,SO,TZ,UG,YT  -0117+03649     Africa/Nairobi
 KG     +4254+07436     Asia/Bishkek
-KI     +0125+17300     Pacific/Tarawa  Gilbert Islands
+KI,MH,TV,UM,WF +0125+17300     Pacific/Tarawa  Gilberts, Marshalls, Tuvalu, 
Wallis & Futuna, Wake
 KI     -0247-17143     Pacific/Kanton  Phoenix Islands
 KI     +0152-15720     Pacific/Kiritimati      Line Islands
 KP     +3901+12545     Asia/Pyongyang
@@ -211,15 +203,12 @@
 LK     +0656+07951     Asia/Colombo
 LR     +0618-01047     Africa/Monrovia
 LT     +5441+02519     Europe/Vilnius
-LU     +4936+00609     Europe/Luxembourg
 LV     +5657+02406     Europe/Riga
 LY     +3254+01311     Africa/Tripoli
 MA     +3339-00735     Africa/Casablanca
-MC     +4342+00723     Europe/Monaco
 MD     +4700+02850     Europe/Chisinau
-MH     +0709+17112     Pacific/Majuro  Marshall Islands (most areas)
 MH     +0905+16720     Pacific/Kwajalein       Kwajalein
-MM     +1647+09610     Asia/Yangon
+MM,CC  +1647+09610     Asia/Yangon
 MN     +4755+10653     Asia/Ulaanbaatar        Mongolia (most areas)
 MN     +4801+09139     Asia/Hovd       Bayan-??lgii, Govi-Altai, Hovd, Uvs, 
Zavkhan
 MN     +4804+11430     Asia/Choibalsan Dornod, S??khbaatar
@@ -227,7 +216,7 @@
 MQ     +1436-06105     America/Martinique
 MT     +3554+01431     Europe/Malta
 MU     -2010+05730     Indian/Mauritius
-MV     +0410+07330     Indian/Maldives
+MV,TF  +0410+07330     Indian/Maldives Maldives, Kerguelen, St Paul I, 
Amsterdam I
 MX     +1924-09909     America/Mexico_City     Central Time
 MX     +2105-08646     America/Cancun  Eastern Standard Time - Quintana Roo
 MX     +2058-08937     America/Merida  Central Time - Campeche, Yucat??n
@@ -239,16 +228,13 @@
 MX     +2904-11058     America/Hermosillo      Mountain Standard Time - Sonora
 MX     +3232-11701     America/Tijuana Pacific Time US - Baja California
 MX     +2048-10515     America/Bahia_Banderas  Central Time - Bah??a de 
Banderas
-MY     +0310+10142     Asia/Kuala_Lumpur       Malaysia (peninsula)
-MY     +0133+11020     Asia/Kuching    Sabah, Sarawak
+MY,BN  +0133+11020     Asia/Kuching    Sabah, Sarawak, Brunei
 MZ,BI,BW,CD,MW,RW,ZM,ZW        -2558+03235     Africa/Maputo   Central Africa 
Time
 NA     -2234+01706     Africa/Windhoek
 NC     -2216+16627     Pacific/Noumea
 NF     -2903+16758     Pacific/Norfolk
 NG,AO,BJ,CD,CF,CG,CM,GA,GQ,NE  +0627+00324     Africa/Lagos    West Africa Time
 NI     +1209-08617     America/Managua
-NL     +5222+00454     Europe/Amsterdam
-NO,SJ  +5955+01045     Europe/Oslo
 NP     +2743+08519     Asia/Kathmandu
 NR     -0031+16655     Pacific/Nauru
 NU     -1901-16955     Pacific/Niue
@@ -259,7 +245,7 @@
 PF     -1732-14934     Pacific/Tahiti  Society Islands
 PF     -0900-13930     Pacific/Marquesas       Marquesas Islands
 PF     -2308-13457     Pacific/Gambier Gambier Islands
-PG,AQ  -0930+14710     Pacific/Port_Moresby    Papua New Guinea (most areas), 
Dumont d'Urville
+PG,AQ,FM       -0930+14710     Pacific/Port_Moresby    Papua New Guinea (most 
areas), Chuuk, Yap, Dumont d'Urville
 PG     -0613+15534     Pacific/Bougainville    Bougainville
 PH     +1435+12100     Asia/Manila
 PK     +2452+06703     Asia/Karachi
@@ -275,7 +261,6 @@
 PW     +0720+13429     Pacific/Palau
 PY     -2516-05740     America/Asuncion
 QA,BH  +2517+05132     Asia/Qatar
-RE,TF  -2052+05528     Indian/Reunion  R??union, Crozet, Scattered Islands
 RO     +4426+02606     Europe/Bucharest
 RS,BA,HR,ME,MK,SI      +4450+02030     Europe/Belgrade
 RU     +5443+02030     Europe/Kaliningrad      MSK-01 - Kaliningrad
@@ -307,10 +292,8 @@
 RU     +5301+15839     Asia/Kamchatka  MSK+09 - Kamchatka
 RU     +6445+17729     Asia/Anadyr     MSK+09 - Bering Sea
 SA,AQ,KW,YE    +2438+04643     Asia/Riyadh     Arabia, Syowa
-SB     -0932+16012     Pacific/Guadalcanal
-SC     -0440+05528     Indian/Mahe
+SB,FM  -0932+16012     Pacific/Guadalcanal     Solomons, Pohnpei
 SD     +1536+03232     Africa/Khartoum
-SE     +5920+01803     Europe/Stockholm
 SG,MY  +0117+10351     Asia/Singapore  Singapore, peninsular Malaysia
 SR     +0550-05510     America/Paramaribo
 SS     +0451+03137     Africa/Juba
@@ -319,8 +302,7 @@
 SY     +3330+03618     Asia/Damascus
 TC     +2128-07108     America/Grand_Turk
 TD     +1207+01503     Africa/Ndjamena
-TF     -492110+0701303 Indian/Kerguelen        Kerguelen, St Paul Island, 
Amsterdam Island
-TH,KH,LA,VN    +1345+10031     Asia/Bangkok    Indochina (most areas)
+TH,CX,KH,LA,VN +1345+10031     Asia/Bangkok    Indochina (most areas)
 TJ     +3835+06848     Asia/Dushanbe
 TK     -0922-17114     Pacific/Fakaofo
 TL     -0833+12535     Asia/Dili
@@ -328,12 +310,10 @@
 TN     +3648+01011     Africa/Tunis
 TO     -210800-1751200 Pacific/Tongatapu
 TR     +4101+02858     Europe/Istanbul
-TV     -0831+17913     Pacific/Funafuti
 TW     +2503+12130     Asia/Taipei
-UA     +5026+03031     Europe/Kiev     Ukraine (most areas)
+UA     +5026+03031     Europe/Kyiv     Ukraine (most areas)
 UA     +4837+02218     Europe/Uzhgorod Transcarpathia
 UA     +4750+03510     Europe/Zaporozhye       Zaporozhye and east Lugansk
-UM     +1917+16637     Pacific/Wake    Wake Island
 US     +404251-0740023 America/New_York        Eastern (most areas)
 US     +421953-0830245 America/Detroit Eastern - MI (most areas)
 US     +381515-0854534 America/Kentucky/Louisville     Eastern - KY 
(Louisville area)
@@ -369,6 +349,5 @@
 VE     +1030-06656     America/Caracas
 VN     +1045+10640     Asia/Ho_Chi_Minh        Vietnam (south)
 VU     -1740+16825     Pacific/Efate
-WF     -1318-17610     Pacific/Wallis
 WS     -1350-17144     Pacific/Apia
 ZA,LS,SZ       -2615+02800     Africa/Johannesburg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz.egg-info/PKG-INFO 
new/pytz-2022.2.1/pytz.egg-info/PKG-INFO
--- old/pytz-2022.1/pytz.egg-info/PKG-INFO      2022-03-20 01:31:16.000000000 
+0100
+++ new/pytz-2022.2.1/pytz.egg-info/PKG-INFO    2022-08-13 04:04:42.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: pytz
-Version: 2022.1
+Version: 2022.2.1
 Summary: World timezone definitions, modern and historical
 Home-page: http://pythonhosted.org/pytz
 Author: Stuart Bishop
@@ -102,7 +102,7 @@
         constructors ''does not work'' with pytz for many timezones.
         
         >>> datetime(2002, 10, 27, 12, 0, 0, tzinfo=amsterdam).strftime(fmt)  
# /!\ Does not work this way!
-        '2002-10-27 12:00:00 LMT+0020'
+        '2002-10-27 12:00:00 LMT+0018'
         
         It is safe for timezones without daylight saving transitions though, 
such
         as UTC:
@@ -596,7 +596,7 @@
         ~~~~~~~~~~~~~~~
         
         More info than you want to know about timezones:
-        http://www.twinsun.com/tz/tz-link.htm
+        https://data.iana.org/time-zones/tz-link.html
         
         
         Contact
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/pytz.egg-info/SOURCES.txt 
new/pytz-2022.2.1/pytz.egg-info/SOURCES.txt
--- old/pytz-2022.1/pytz.egg-info/SOURCES.txt   2022-03-20 01:31:16.000000000 
+0100
+++ new/pytz-2022.2.1/pytz.egg-info/SOURCES.txt 2022-08-13 04:04:42.000000000 
+0200
@@ -508,6 +508,7 @@
 pytz/zoneinfo/Europe/Kaliningrad
 pytz/zoneinfo/Europe/Kiev
 pytz/zoneinfo/Europe/Kirov
+pytz/zoneinfo/Europe/Kyiv
 pytz/zoneinfo/Europe/Lisbon
 pytz/zoneinfo/Europe/Ljubljana
 pytz/zoneinfo/Europe/London
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.1/setup.py new/pytz-2022.2.1/setup.py
--- old/pytz-2022.1/setup.py    2022-03-20 01:24:29.000000000 +0100
+++ new/pytz-2022.2.1/setup.py  2022-08-13 04:04:38.000000000 +0200
@@ -17,7 +17,7 @@
 resources = ['zone.tab', 'locales/pytz.pot']
 for dirpath, dirnames, filenames in os.walk(os.path.join('pytz', 'zoneinfo')):
     # remove the 'pytz' part of the path
-    basepath = dirpath.split(os.path.sep, 1)[1]
+    basepath = dirpath.split(os.sep, 1)[1]
     resources.extend([os.path.join(basepath, filename) for filename in 
filenames])
 package_data = {'pytz': resources}
 

Reply via email to