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 2023-03-08 14:51:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytz (Old)
 and      /work/SRC/openSUSE:Factory/.python-pytz.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pytz"

Wed Mar  8 14:51:22 2023 rev:51 rq:1069839 version:2022.7.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pytz/python-pytz.changes  2023-01-04 
17:51:15.261704770 +0100
+++ /work/SRC/openSUSE:Factory/.python-pytz.new.31432/python-pytz.changes       
2023-03-08 14:51:22.426284363 +0100
@@ -1,0 +2,6 @@
+Tue Mar  7 07:35:24 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2022.7.1:
+  * fixes to documentation formatting 
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ python-pytz.spec ++++++
--- /var/tmp/diff_new_pack.FYUZBc/_old  2023-03-08 14:51:23.042287717 +0100
+++ /var/tmp/diff_new_pack.FYUZBc/_new  2023-03-08 14:51:23.046287739 +0100
@@ -29,7 +29,7 @@
     } }
 
 Name:           python-pytz
-Version:        2022.7
+Version:        2022.7.1
 Release:        0
 Summary:        World timezone definitions, modern and historical
 License:        MIT


++++++ pytz-2022.7.tar.gz -> pytz-2022.7.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.7/PKG-INFO new/pytz-2022.7.1/PKG-INFO
--- old/pytz-2022.7/PKG-INFO    2022-12-18 03:16:15.947763000 +0100
+++ new/pytz-2022.7.1/PKG-INFO  2023-01-14 13:22:50.114057300 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: pytz
-Version: 2022.7
+Version: 2022.7.1
 Summary: World timezone definitions, modern and historical
 Home-page: http://pythonhosted.org/pytz
 Author: Stuart Bishop
@@ -531,7 +531,7 @@
         
         Pytz is an interface to the IANA database, which uses ASCII names. The 
`Unicode  Consortium's Unicode Locales (CLDR) <http://cldr.unicode.org>`_
         project provides translations. Python packages such as
-        `Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`
+        `Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`_
         and Thomas Khyn's `l18n <https://pypi.org/project/l18n/>`_ package can 
be used
         to access these translations from Python.
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.7/README.rst new/pytz-2022.7.1/README.rst
--- old/pytz-2022.7/README.rst  2022-12-18 03:16:11.000000000 +0100
+++ new/pytz-2022.7.1/README.rst        2023-01-14 13:22:42.000000000 +0100
@@ -520,7 +520,7 @@
 
 Pytz is an interface to the IANA database, which uses ASCII names. The 
`Unicode  Consortium's Unicode Locales (CLDR) <http://cldr.unicode.org>`_
 project provides translations. Python packages such as
-`Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`
+`Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`_
 and Thomas Khyn's `l18n <https://pypi.org/project/l18n/>`_ package can be used
 to access these translations from Python.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.7/pytz/__init__.py 
new/pytz-2022.7.1/pytz/__init__.py
--- old/pytz-2022.7/pytz/__init__.py    2022-12-18 03:16:11.000000000 +0100
+++ new/pytz-2022.7.1/pytz/__init__.py  2023-01-14 13:22:43.000000000 +0100
@@ -23,7 +23,7 @@
 
 # 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 @@
     """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
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.7/pytz/tests/test_tzinfo.py 
new/pytz-2022.7.1/pytz/tests/test_tzinfo.py
--- old/pytz-2022.7/pytz/tests/test_tzinfo.py   2022-12-18 03:16:11.000000000 
+0100
+++ new/pytz-2022.7.1/pytz/tests/test_tzinfo.py 2023-01-14 13:22:42.000000000 
+0100
@@ -27,7 +27,7 @@
 
 # I test for expected version to ensure the correct version of pytz is
 # actually being tested.
-EXPECTED_VERSION = '2022.7'
+EXPECTED_VERSION = '2022.7.1'
 EXPECTED_OLSON_VERSION = '2022g'
 
 fmt = '%Y-%m-%d %H:%M:%S %Z%z'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytz-2022.7/pytz.egg-info/PKG-INFO 
new/pytz-2022.7.1/pytz.egg-info/PKG-INFO
--- old/pytz-2022.7/pytz.egg-info/PKG-INFO      2022-12-18 03:16:15.000000000 
+0100
+++ new/pytz-2022.7.1/pytz.egg-info/PKG-INFO    2023-01-14 13:22:49.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: pytz
-Version: 2022.7
+Version: 2022.7.1
 Summary: World timezone definitions, modern and historical
 Home-page: http://pythonhosted.org/pytz
 Author: Stuart Bishop
@@ -531,7 +531,7 @@
         
         Pytz is an interface to the IANA database, which uses ASCII names. The 
`Unicode  Consortium's Unicode Locales (CLDR) <http://cldr.unicode.org>`_
         project provides translations. Python packages such as
-        `Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`
+        `Babel 
<https://babel.pocoo.org/en/latest/api/dates.html#timezone-functionality>`_
         and Thomas Khyn's `l18n <https://pypi.org/project/l18n/>`_ package can 
be used
         to access these translations from Python.
         

Reply via email to