Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-zopfli for openSUSE:Factory checked in at 2023-10-06 21:12:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-zopfli (Old) and /work/SRC/openSUSE:Factory/.python-zopfli.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-zopfli" Fri Oct 6 21:12:31 2023 rev:5 rq:1115777 version:0.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-zopfli/python-zopfli.changes 2023-04-22 21:58:44.812601765 +0200 +++ /work/SRC/openSUSE:Factory/.python-zopfli.new.28202/python-zopfli.changes 2023-10-06 21:12:34.343799699 +0200 @@ -1,0 +2,7 @@ +Thu Oct 5 09:11:36 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 0.2.3: + * Dropped support for Python 3.7, added support for Python + 3.12. No other code changes. + +------------------------------------------------------------------- Old: ---- zopfli-0.2.2.zip New: ---- zopfli-0.2.3.zip ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-zopfli.spec ++++++ --- /var/tmp/diff_new_pack.nPvE2X/_old 2023-10-06 21:12:35.963858228 +0200 +++ /var/tmp/diff_new_pack.nPvE2X/_new 2023-10-06 21:12:35.979858806 +0200 @@ -18,13 +18,13 @@ %{?sle15_python_module_pythons} Name: python-zopfli -Version: 0.2.2 +Version: 0.2.3 Release: 0 Summary: Zopfli module for python License: Apache-2.0 URL: https://github.com/obp/py-zopfli Source: https://files.pythonhosted.org/packages/source/z/zopfli/zopfli-%{version}.zip -BuildRequires: %{python_module devel >= 3.7} +BuildRequires: %{python_module devel >= 3.8} BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools_scm} ++++++ zopfli-0.2.2.zip -> zopfli-0.2.3.zip ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/.github/workflows/ci.yml new/zopfli-0.2.3/.github/workflows/ci.yml --- old/zopfli-0.2.2/.github/workflows/ci.yml 2022-11-15 16:56:56.000000000 +0100 +++ new/zopfli-0.2.3/.github/workflows/ci.yml 2023-09-08 13:39:58.000000000 +0200 @@ -50,25 +50,25 @@ arch: [auto64] build: ["*"] include: - # the manylinux1 docker images only contain from python3.7 to 3.9 + # the manylinux1 docker images only contain python3.8 and 3.9 - os: ubuntu-latest type: manylinux1 arch: auto - build: "cp{37,38,39}-*" + build: "cp{38,39}-*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 CIBW_MANYLINUX_I686_IMAGE: manylinux1 - # the manylinux2010 image also contains python 3.10 and pypy3.7 and 3.8 + # the manylinux2010 image also contains python 3.10 and pypy3.8 - os: ubuntu-latest arch: auto type: manylinux2010 - build: "pp{37,38}-* cp310-*" + build: "pp{38}-* cp310-*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 CIBW_MANYLINUX_I686_IMAGE: manylinux2010 - # the manylinux2014 image also contains python 3.11 and pypy3.9 + # the manylinux2014 image also contains python 3.11, 3.12 and pypy3.9 and 3.10 - os: ubuntu-latest arch: auto type: manylinux2014 - build: "pp39-* cp311-*" + build: "pp39-* pp310-* cp311-*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 CIBW_MANYLINUX_I686_IMAGE: manylinux2014 @@ -106,7 +106,7 @@ strategy: matrix: # aarch64 uses qemu so it's slow, build each py version in parallel jobs - python: [37, 38, 39, 310, 311] + python: [38, 39, 310, 311, 312] arch: [aarch64] steps: - uses: actions/checkout@v2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/PKG-INFO new/zopfli-0.2.3/PKG-INFO --- old/zopfli-0.2.2/PKG-INFO 2022-11-15 16:57:12.000000000 +0100 +++ new/zopfli-0.2.3/PKG-INFO 2023-09-08 13:40:12.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: zopfli -Version: 0.2.2 +Version: 0.2.3 Summary: Zopfli module for python Home-page: https://github.com/fonttools/py-zopfli Author: Adam DePrince @@ -14,9 +14,10 @@ Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Topic :: System :: Archiving :: Compression -Requires-Python: >=3.7 -Provides-Extra: test +Requires-Python: >=3.8 License-File: COPYING +Provides-Extra: test +Requires-Dist: pytest; extra == "test" |Build Status| @@ -26,7 +27,7 @@ cPython bindings for `zopfli <http://googledevelopers.blogspot.com/2013/02/compress-data-more-densely-with-zopfli.html>`__. -It requires Python 3.7 or greater. +It requires Python 3.8 or greater. USAGE ===== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/README.rst new/zopfli-0.2.3/README.rst --- old/zopfli-0.2.2/README.rst 2022-11-15 16:56:56.000000000 +0100 +++ new/zopfli-0.2.3/README.rst 2023-09-08 13:39:58.000000000 +0200 @@ -6,7 +6,7 @@ cPython bindings for `zopfli <http://googledevelopers.blogspot.com/2013/02/compress-data-more-densely-with-zopfli.html>`__. -It requires Python 3.7 or greater. +It requires Python 3.8 or greater. USAGE ===== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/setup.py new/zopfli-0.2.3/setup.py --- old/zopfli-0.2.2/setup.py 2022-11-15 16:56:56.000000000 +0100 +++ new/zopfli-0.2.3/setup.py 2023-09-08 13:39:58.000000000 +0200 @@ -92,5 +92,5 @@ }, setup_requires=["setuptools_scm"], extras_require={"test": ["pytest"]}, - python_requires=">=3.7", + python_requires=">=3.8", ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/src/zopfli/_version.py new/zopfli-0.2.3/src/zopfli/_version.py --- old/zopfli-0.2.2/src/zopfli/_version.py 2022-11-15 16:57:12.000000000 +0100 +++ new/zopfli-0.2.3/src/zopfli/_version.py 2023-09-08 13:40:12.000000000 +0200 @@ -1,5 +1,4 @@ -# coding: utf-8 # file generated by setuptools_scm # don't change, don't track in version control -__version__ = version = '0.2.2' -__version_tuple__ = version_tuple = (0, 2, 2) +__version__ = version = '0.2.3' +__version_tuple__ = version_tuple = (0, 2, 3) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/src/zopfli.egg-info/PKG-INFO new/zopfli-0.2.3/src/zopfli.egg-info/PKG-INFO --- old/zopfli-0.2.2/src/zopfli.egg-info/PKG-INFO 2022-11-15 16:57:12.000000000 +0100 +++ new/zopfli-0.2.3/src/zopfli.egg-info/PKG-INFO 2023-09-08 13:40:12.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: zopfli -Version: 0.2.2 +Version: 0.2.3 Summary: Zopfli module for python Home-page: https://github.com/fonttools/py-zopfli Author: Adam DePrince @@ -14,9 +14,10 @@ Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Topic :: System :: Archiving :: Compression -Requires-Python: >=3.7 -Provides-Extra: test +Requires-Python: >=3.8 License-File: COPYING +Provides-Extra: test +Requires-Dist: pytest; extra == "test" |Build Status| @@ -26,7 +27,7 @@ cPython bindings for `zopfli <http://googledevelopers.blogspot.com/2013/02/compress-data-more-densely-with-zopfli.html>`__. -It requires Python 3.7 or greater. +It requires Python 3.8 or greater. USAGE ===== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zopfli-0.2.2/tox.ini new/zopfli-0.2.3/tox.ini --- old/zopfli-0.2.2/tox.ini 2022-11-15 16:56:56.000000000 +0100 +++ new/zopfli-0.2.3/tox.ini 2023-09-08 13:39:58.000000000 +0200 @@ -1,5 +1,5 @@ [tox] -envlist = py3{7,8,9,10} +envlist = py3{8,9,10,11,12} [testenv] extras = test