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-04-06 15:55:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pytz (Old) and /work/SRC/openSUSE:Factory/.python-pytz.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytz" Thu Apr 6 15:55:23 2023 rev:53 rq:1077059 version:2023.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pytz/python-pytz.changes 2023-03-29 23:26:33.719276485 +0200 +++ /work/SRC/openSUSE:Factory/.python-pytz.new.19717/python-pytz.changes 2023-04-06 15:55:27.148130007 +0200 @@ -1,0 +2,6 @@ +Mon Apr 3 19:53:43 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 2023.3: + * Update to IANA 2023c + +------------------------------------------------------------------- Old: ---- pytz-2023.2.tar.gz pytz-2023.2.tar.gz.asc New: ---- pytz-2023.3.tar.gz pytz-2023.3.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pytz.spec ++++++ --- /var/tmp/diff_new_pack.vvhWAX/_old 2023-04-06 15:55:27.980134705 +0200 +++ /var/tmp/diff_new_pack.vvhWAX/_new 2023-04-06 15:55:27.984134728 +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 2023b +%define tzdata_version 2023c %define oldpython python %{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!pyunittest:%define pyunittest(+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-=) \\\ @@ -29,7 +29,7 @@ } } Name: python-pytz -Version: 2023.2 +Version: 2023.3 Release: 0 Summary: World timezone definitions, modern and historical License: MIT ++++++ pytz-2023.2.tar.gz -> pytz-2023.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/PKG-INFO new/pytz-2023.3/PKG-INFO --- old/pytz-2023.2/PKG-INFO 2023-03-25 09:30:37.582214400 +0100 +++ new/pytz-2023.3/PKG-INFO 2023-03-29 06:23:16.369117700 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: pytz -Version: 2023.2 +Version: 2023.3 Summary: World timezone definitions, modern and historical Home-page: http://pythonhosted.org/pytz Author: Stuart Bishop @@ -27,6 +27,14 @@ .. note:: + Projects using Python 3.9 or later should be using the support + now included as part of the standard library, and third party + packages work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + pytz offers no advantages beyond backwards compatibility with + code written for earlier versions of Python. + + .. note:: + This library differs from the documented Python API for tzinfo implementations; if you want to create local wallclock times you need to use the ``localize()`` method documented in this @@ -554,12 +562,10 @@ This package will be updated after releases of the Olson timezone database. The latest version can be downloaded from the `Python Package Index <https://pypi.org/project/pytz/>`_. The code that is used - to generate this distribution is hosted on launchpad.net and available + to generate this distribution is hosted on Github and available using git:: - git clone https://git.launchpad.net/pytz - - A mirror on github is also available at https://github.com/stub42/pytz + git clone https://github.com/stub42/pytz.git Announcements of new releases are made on `Launchpad <https://launchpad.net/pytz>`_, and the @@ -570,7 +576,9 @@ Bugs, Feature Requests & Patches ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Bugs can be reported using `Launchpad Bugs <https://bugs.launchpad.net/pytz>`_. + Bugs should be reported on `Github <https://github.com/stub42/pytz/issues>`_. + Feature requests are unlikely to be considered, and efforts instead directed + to timezone support now built into Python or packages that work with it. Security Issues @@ -582,9 +590,13 @@ Issues & Limitations ~~~~~~~~~~~~~~~~~~~~ + - This project is in maintenance mode. Projects using Python 3.9 or later + are best served by using the timezone functionaly now included in core + Python and packages that work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + - Offsets from UTC are rounded to the nearest whole minute, so timezones such as Europe/Amsterdam pre 1937 will be up to 30 seconds out. This - is a limitation of the Python datetime library. + was a limitation of the Python datetime library. - If you think a timezone definition is incorrect, I probably can't fix it. pytz is a direct translation of the Olson timezone database, and @@ -606,7 +618,6 @@ Stuart Bishop <stu...@stuartbishop.net> - Keywords: timezone,tzinfo,datetime,olson,time Platform: Independent Classifier: Development Status :: 6 - Mature diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/README.rst new/pytz-2023.3/README.rst --- old/pytz-2023.2/README.rst 2023-03-25 09:21:22.000000000 +0100 +++ new/pytz-2023.3/README.rst 2023-03-29 06:23:10.000000000 +0200 @@ -16,6 +16,14 @@ .. note:: + Projects using Python 3.9 or later should be using the support + now included as part of the standard library, and third party + packages work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + pytz offers no advantages beyond backwards compatibility with + code written for earlier versions of Python. + +.. note:: + This library differs from the documented Python API for tzinfo implementations; if you want to create local wallclock times you need to use the ``localize()`` method documented in this @@ -543,12 +551,10 @@ This package will be updated after releases of the Olson timezone database. The latest version can be downloaded from the `Python Package Index <https://pypi.org/project/pytz/>`_. The code that is used -to generate this distribution is hosted on launchpad.net and available +to generate this distribution is hosted on Github and available using git:: - git clone https://git.launchpad.net/pytz - -A mirror on github is also available at https://github.com/stub42/pytz + git clone https://github.com/stub42/pytz.git Announcements of new releases are made on `Launchpad <https://launchpad.net/pytz>`_, and the @@ -559,7 +565,9 @@ Bugs, Feature Requests & Patches ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Bugs can be reported using `Launchpad Bugs <https://bugs.launchpad.net/pytz>`_. +Bugs should be reported on `Github <https://github.com/stub42/pytz/issues>`_. +Feature requests are unlikely to be considered, and efforts instead directed +to timezone support now built into Python or packages that work with it. Security Issues @@ -571,9 +579,13 @@ Issues & Limitations ~~~~~~~~~~~~~~~~~~~~ +- This project is in maintenance mode. Projects using Python 3.9 or later + are best served by using the timezone functionaly now included in core + Python and packages that work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + - Offsets from UTC are rounded to the nearest whole minute, so timezones such as Europe/Amsterdam pre 1937 will be up to 30 seconds out. This - is a limitation of the Python datetime library. + was a limitation of the Python datetime library. - If you think a timezone definition is incorrect, I probably can't fix it. pytz is a direct translation of the Olson timezone database, and @@ -594,4 +606,3 @@ Stuart Bishop <stu...@stuartbishop.net> - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/pytz/__init__.py new/pytz-2023.3/pytz/__init__.py --- old/pytz-2023.2/pytz/__init__.py 2023-03-25 09:21:22.000000000 +0100 +++ new/pytz-2023.3/pytz/__init__.py 2023-03-29 06:23:10.000000000 +0200 @@ -22,8 +22,8 @@ # The IANA (nee Olson) database is updated several times a year. -OLSON_VERSION = '2023b' -VERSION = '2023.2' # pip compatible version number. +OLSON_VERSION = '2023c' +VERSION = '2023.3' # pip compatible version number. __version__ = VERSION OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/pytz/tests/test_tzinfo.py new/pytz-2023.3/pytz/tests/test_tzinfo.py --- old/pytz-2023.2/pytz/tests/test_tzinfo.py 2023-03-25 09:21:22.000000000 +0100 +++ new/pytz-2023.3/pytz/tests/test_tzinfo.py 2023-03-29 06:23:10.000000000 +0200 @@ -27,8 +27,8 @@ # I test for expected version to ensure the correct version of pytz is # actually being tested. -EXPECTED_VERSION = '2023.2' -EXPECTED_OLSON_VERSION = '2023b' +EXPECTED_VERSION = '2023.3' +EXPECTED_OLSON_VERSION = '2023c' fmt = '%Y-%m-%d %H:%M:%S %Z%z' Binary files old/pytz-2023.2/pytz/zoneinfo/Asia/Beirut and new/pytz-2023.3/pytz/zoneinfo/Asia/Beirut differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/pytz/zoneinfo/tzdata.zi new/pytz-2023.3/pytz/zoneinfo/tzdata.zi --- old/pytz-2023.2/pytz/zoneinfo/tzdata.zi 2023-03-25 09:21:19.000000000 +0100 +++ new/pytz-2023.3/pytz/zoneinfo/tzdata.zi 2023-03-29 06:23:08.000000000 +0200 @@ -920,11 +920,9 @@ R l 1989 o - May 10 0 1 S R l 1990 1992 - May 1 0 1 S R l 1992 o - O 4 0 0 - -R l 1993 2022 - Mar lastSu 0 1 S +R l 1993 ma - Mar lastSu 0 1 S R l 1993 1998 - S lastSu 0 0 - R l 1999 ma - O lastSu 0 0 - -R l 2023 o - Ap 21 0 1 S -R l 2024 ma - Mar lastSu 0 1 S Z Asia/Beirut 2:22 - LMT 1880 2 l EE%sT R NB 1935 1941 - S 14 0 0:20 - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pytz-2023.2/pytz.egg-info/PKG-INFO new/pytz-2023.3/pytz.egg-info/PKG-INFO --- old/pytz-2023.2/pytz.egg-info/PKG-INFO 2023-03-25 09:30:36.000000000 +0100 +++ new/pytz-2023.3/pytz.egg-info/PKG-INFO 2023-03-29 06:23:15.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: pytz -Version: 2023.2 +Version: 2023.3 Summary: World timezone definitions, modern and historical Home-page: http://pythonhosted.org/pytz Author: Stuart Bishop @@ -27,6 +27,14 @@ .. note:: + Projects using Python 3.9 or later should be using the support + now included as part of the standard library, and third party + packages work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + pytz offers no advantages beyond backwards compatibility with + code written for earlier versions of Python. + + .. note:: + This library differs from the documented Python API for tzinfo implementations; if you want to create local wallclock times you need to use the ``localize()`` method documented in this @@ -554,12 +562,10 @@ This package will be updated after releases of the Olson timezone database. The latest version can be downloaded from the `Python Package Index <https://pypi.org/project/pytz/>`_. The code that is used - to generate this distribution is hosted on launchpad.net and available + to generate this distribution is hosted on Github and available using git:: - git clone https://git.launchpad.net/pytz - - A mirror on github is also available at https://github.com/stub42/pytz + git clone https://github.com/stub42/pytz.git Announcements of new releases are made on `Launchpad <https://launchpad.net/pytz>`_, and the @@ -570,7 +576,9 @@ Bugs, Feature Requests & Patches ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Bugs can be reported using `Launchpad Bugs <https://bugs.launchpad.net/pytz>`_. + Bugs should be reported on `Github <https://github.com/stub42/pytz/issues>`_. + Feature requests are unlikely to be considered, and efforts instead directed + to timezone support now built into Python or packages that work with it. Security Issues @@ -582,9 +590,13 @@ Issues & Limitations ~~~~~~~~~~~~~~~~~~~~ + - This project is in maintenance mode. Projects using Python 3.9 or later + are best served by using the timezone functionaly now included in core + Python and packages that work with it such as `tzdata <https://pypi.org/project/tzdata/>`_. + - Offsets from UTC are rounded to the nearest whole minute, so timezones such as Europe/Amsterdam pre 1937 will be up to 30 seconds out. This - is a limitation of the Python datetime library. + was a limitation of the Python datetime library. - If you think a timezone definition is incorrect, I probably can't fix it. pytz is a direct translation of the Olson timezone database, and @@ -606,7 +618,6 @@ Stuart Bishop <stu...@stuartbishop.net> - Keywords: timezone,tzinfo,datetime,olson,time Platform: Independent Classifier: Development Status :: 6 - Mature