Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pycares for openSUSE:Factory checked in at 2025-09-20 22:03:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pycares (Old) and /work/SRC/openSUSE:Factory/.python-pycares.new.27445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pycares" Sat Sep 20 22:03:52 2025 rev:16 rq:1305968 version:4.11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pycares/python-pycares.changes 2025-08-14 11:36:06.723552414 +0200 +++ /work/SRC/openSUSE:Factory/.python-pycares.new.27445/python-pycares.changes 2025-09-20 22:04:03.018595183 +0200 @@ -1,0 +2,13 @@ +Fri Sep 19 09:02:33 UTC 2025 - John Paul Adrian Glaubitz <[email protected]> + +- Update to 4.11.0 + * Add support for Python 3.14 (including free-threaded Python) + by @ngoldbaum in #256 + * build(deps): bump actions/checkout from 4 to 5 + by @dependabot[bot] in #259 + * build(deps): bump actions/download-artifact from 4 to 5 + by @dependabot[bot] in #258 + * build(deps): bump pypa/cibuildwheel from 3.1.3 to 3.1.4 + by @dependabot[bot] in #257 + +------------------------------------------------------------------- Old: ---- pycares-4.10.0.tar.gz New: ---- pycares-4.11.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pycares.spec ++++++ --- /var/tmp/diff_new_pack.fqLn2L/_old 2025-09-20 22:04:03.634621023 +0200 +++ /var/tmp/diff_new_pack.fqLn2L/_new 2025-09-20 22:04:03.638621190 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-pycares -Version: 4.10.0 +Version: 4.11.0 Release: 0 Summary: Python interface for c-ares License: MIT ++++++ pycares-4.10.0.tar.gz -> pycares-4.11.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/PKG-INFO new/pycares-4.11.0/PKG-INFO --- old/pycares-4.10.0/PKG-INFO 2025-08-05 21:59:30.204699500 +0200 +++ new/pycares-4.11.0/PKG-INFO 2025-09-09 13:44:38.278910200 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: pycares -Version: 4.10.0 +Version: 4.11.0 Summary: Python interface for c-ares Home-page: http://github.com/saghul/pycares Author: Saúl Ibarra Corretgé @@ -20,12 +20,15 @@ Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Requires-Python: >=3.9 Description-Content-Type: text/x-rst License-File: LICENSE -Requires-Dist: cffi>=1.5.0 +Requires-Dist: cffi>=1.5.0; python_version < "3.14" +Requires-Dist: cffi>=2.0.0b1; python_version >= "3.14" Provides-Extra: idna Requires-Dist: idna>=2.1; extra == "idna" Dynamic: author diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/pyproject.toml new/pycares-4.11.0/pyproject.toml --- old/pycares-4.10.0/pyproject.toml 2025-08-05 21:59:20.000000000 +0200 +++ new/pycares-4.11.0/pyproject.toml 2025-09-09 13:44:30.000000000 +0200 @@ -1,5 +1,10 @@ [build-system] -requires = ["setuptools", "wheel", "cffi>=1.5.0"] +requires = [ + "setuptools", + "wheel", + "cffi>=1.5.0; python_version < '3.14'", + "cffi>=2.0.0b1; python_version >= '3.14'", +] build-backend = "setuptools.build_meta" [tool.cibuildwheel] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/setup.py new/pycares-4.11.0/setup.py --- old/pycares-4.10.0/setup.py 2025-08-05 21:59:20.000000000 +0200 +++ new/pycares-4.11.0/setup.py 2025-09-09 13:44:30.000000000 +0200 @@ -41,11 +41,16 @@ 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', + 'Programming Language :: Python :: Free Threading :: 3 - Stable', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], cmdclass = {'build_ext': cares_build_ext}, - install_requires = ['cffi>=1.5.0'], + install_requires = [ + "cffi>=1.5.0; python_version < '3.14'", + "cffi>=2.0.0b1; python_version >= '3.14'", + ], extras_require = {'idna': ['idna >= 2.1']}, python_requires = '>=3.9', cffi_modules = ['src/_cffi_src/build_cares.py:ffi'], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/src/pycares/_version.py new/pycares-4.11.0/src/pycares/_version.py --- old/pycares-4.10.0/src/pycares/_version.py 2025-08-05 21:59:20.000000000 +0200 +++ new/pycares-4.11.0/src/pycares/_version.py 2025-09-09 13:44:30.000000000 +0200 @@ -1,2 +1,2 @@ -__version__ = '4.10.0' +__version__ = '4.11.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/src/pycares.egg-info/PKG-INFO new/pycares-4.11.0/src/pycares.egg-info/PKG-INFO --- old/pycares-4.10.0/src/pycares.egg-info/PKG-INFO 2025-08-05 21:59:30.000000000 +0200 +++ new/pycares-4.11.0/src/pycares.egg-info/PKG-INFO 2025-09-09 13:44:38.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: pycares -Version: 4.10.0 +Version: 4.11.0 Summary: Python interface for c-ares Home-page: http://github.com/saghul/pycares Author: Saúl Ibarra Corretgé @@ -20,12 +20,15 @@ Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Requires-Python: >=3.9 Description-Content-Type: text/x-rst License-File: LICENSE -Requires-Dist: cffi>=1.5.0 +Requires-Dist: cffi>=1.5.0; python_version < "3.14" +Requires-Dist: cffi>=2.0.0b1; python_version >= "3.14" Provides-Extra: idna Requires-Dist: idna>=2.1; extra == "idna" Dynamic: author diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycares-4.10.0/src/pycares.egg-info/requires.txt new/pycares-4.11.0/src/pycares.egg-info/requires.txt --- old/pycares-4.10.0/src/pycares.egg-info/requires.txt 2025-08-05 21:59:30.000000000 +0200 +++ new/pycares-4.11.0/src/pycares.egg-info/requires.txt 2025-09-09 13:44:38.000000000 +0200 @@ -1,4 +1,9 @@ + +[:python_version < "3.14"] cffi>=1.5.0 +[:python_version >= "3.14"] +cffi>=2.0.0b1 + [idna] idna>=2.1
