Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-murmurhash for openSUSE:Factory checked in at 2025-12-01 11:13:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-murmurhash (Old) and /work/SRC/openSUSE:Factory/.python-murmurhash.new.14147 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-murmurhash" Mon Dec 1 11:13:53 2025 rev:6 rq:1320600 version:1.0.15 Changes: -------- --- /work/SRC/openSUSE:Factory/python-murmurhash/python-murmurhash.changes 2025-10-29 21:07:23.976499446 +0100 +++ /work/SRC/openSUSE:Factory/.python-murmurhash.new.14147/python-murmurhash.changes 2025-12-01 11:14:30.893537858 +0100 @@ -1,0 +2,12 @@ +Fri Nov 28 10:04:11 UTC 2025 - John Paul Adrian Glaubitz <[email protected]> + +- Update to 1.0.15 + * Increment version +- from version 1.0.14 + * Implement support for 3.14 & free-threading (#47) + * Use centralised cibuildwheel + * Increment version + * Fix cibuildwheel +- Drop support-python-314.patch, fixed upstream + +------------------------------------------------------------------- Old: ---- murmurhash-1.0.13.tar.gz support-python-314.patch New: ---- murmurhash-1.0.15.tar.gz ----------(Old B)---------- Old: * Fix cibuildwheel - Drop support-python-314.patch, fixed upstream ----------(Old E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-murmurhash.spec ++++++ --- /var/tmp/diff_new_pack.FM2aW1/_old 2025-12-01 11:14:31.373558178 +0100 +++ /var/tmp/diff_new_pack.FM2aW1/_new 2025-12-01 11:14:31.373558178 +0100 @@ -18,14 +18,12 @@ %{?sle15_python_module_pythons} Name: python-murmurhash -Version: 1.0.13 +Version: 1.0.15 Release: 0 Summary: Cython bindings for MurmurHash License: MIT URL: https://github.com/explosion/murmurhash Source: https://files.pythonhosted.org/packages/source/m/murmurhash/murmurhash-%{version}.tar.gz -# PATCH-FIX-UPSTREAM Based on https://github.com/explosion/murmurhash/pull/47 -Patch0: support-python-314.patch BuildRequires: %{python_module Cython >= 3.1} BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest} ++++++ murmurhash-1.0.13.tar.gz -> murmurhash-1.0.15.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/PKG-INFO new/murmurhash-1.0.15/PKG-INFO --- old/murmurhash-1.0.13/PKG-INFO 2025-05-22 14:23:28.691993700 +0200 +++ new/murmurhash-1.0.15/PKG-INFO 2025-11-14 10:41:14.743455400 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: murmurhash -Version: 1.0.13 +Version: 1.0.15 Summary: Cython bindings for MurmurHash Home-page: https://github.com/explosion/murmurhash Author: Explosion @@ -22,8 +22,10 @@ Classifier: Programming Language :: Python :: 3.10 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: Topic :: Scientific/Engineering -Requires-Python: >=3.6,<3.14 +Requires-Python: >=3.6,<3.15 Description-Content-Type: text/markdown License-File: LICENSE Dynamic: author diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/murmurhash/about.py new/murmurhash-1.0.15/murmurhash/about.py --- old/murmurhash-1.0.13/murmurhash/about.py 2025-05-22 14:23:24.000000000 +0200 +++ new/murmurhash-1.0.15/murmurhash/about.py 2025-11-14 10:41:09.000000000 +0100 @@ -1,5 +1,5 @@ __title__ = "murmurhash" -__version__ = "1.0.13" +__version__ = "1.0.15" __summary__ = "Cython bindings for MurmurHash" __uri__ = "https://github.com/explosion/murmurhash" __author__ = "Explosion" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/murmurhash/mrmr.pyx new/murmurhash-1.0.15/murmurhash/mrmr.pyx --- old/murmurhash-1.0.13/murmurhash/mrmr.pyx 2025-05-22 14:23:24.000000000 +0200 +++ new/murmurhash-1.0.15/murmurhash/mrmr.pyx 2025-11-14 10:41:09.000000000 +0100 @@ -1,3 +1,4 @@ +# cython: freethreading_compatible=True from libc.stdint cimport uint64_t, int64_t, int32_t diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/murmurhash.egg-info/PKG-INFO new/murmurhash-1.0.15/murmurhash.egg-info/PKG-INFO --- old/murmurhash-1.0.13/murmurhash.egg-info/PKG-INFO 2025-05-22 14:23:28.000000000 +0200 +++ new/murmurhash-1.0.15/murmurhash.egg-info/PKG-INFO 2025-11-14 10:41:14.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: murmurhash -Version: 1.0.13 +Version: 1.0.15 Summary: Cython bindings for MurmurHash Home-page: https://github.com/explosion/murmurhash Author: Explosion @@ -22,8 +22,10 @@ Classifier: Programming Language :: Python :: 3.10 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: Topic :: Scientific/Engineering -Requires-Python: >=3.6,<3.14 +Requires-Python: >=3.6,<3.15 Description-Content-Type: text/markdown License-File: LICENSE Dynamic: author diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/pyproject.toml new/murmurhash-1.0.15/pyproject.toml --- old/murmurhash-1.0.13/pyproject.toml 2025-05-22 14:23:24.000000000 +0200 +++ new/murmurhash-1.0.15/pyproject.toml 2025-11-14 10:41:09.000000000 +0100 @@ -1,7 +1,7 @@ [build-system] requires = [ "setuptools", - "cython>=0.25", + "cython>=3.1", ] build-backend = "setuptools.build_meta" @@ -9,7 +9,7 @@ build = "*" skip = "pp* cp36* cp37* cp38*" test-skip = "" -free-threaded-support = false +enable = ["cpython-freethreading"] archs = ["native"] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/murmurhash-1.0.13/setup.py new/murmurhash-1.0.15/setup.py --- old/murmurhash-1.0.13/setup.py 2025-05-22 14:23:24.000000000 +0200 +++ new/murmurhash-1.0.15/setup.py 2025-11-14 10:41:09.000000000 +0100 @@ -113,8 +113,8 @@ version=about["__version__"], url=about["__uri__"], license=about["__license__"], - ext_modules=cythonize(ext_modules, language_level=2), - python_requires=">=3.6,<3.14", + ext_modules=cythonize(ext_modules), + python_requires=">=3.6,<3.15", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -132,6 +132,8 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering", ], cmdclass={"build_ext": build_ext_subclass},
