Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-smmap for openSUSE:Factory checked in at 2026-03-11 20:49:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-smmap (Old) and /work/SRC/openSUSE:Factory/.python-smmap.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-smmap" Wed Mar 11 20:49:49 2026 rev:22 rq:1337910 version:5.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-smmap/python-smmap.changes 2025-06-17 18:20:36.194266532 +0200 +++ /work/SRC/openSUSE:Factory/.python-smmap.new.8177/python-smmap.changes 2026-03-11 20:49:55.824661405 +0100 @@ -1,0 +2,9 @@ +Tue Mar 10 08:33:25 UTC 2026 - Dirk Müller <[email protected]> + +- update to 5.0.3: + * Test Python 3.7 on Ubuntu 22.04, and add Ubuntu 3.13 + * Add SECURITY.md, referencing the GitPython one + * Specify explicit `contents: read` workflow permissions + * Add CI test job for no-GIL (free-threaded) Python 3.13 + +------------------------------------------------------------------- Old: ---- smmap-5.0.2.tar.gz New: ---- smmap-5.0.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-smmap.spec ++++++ --- /var/tmp/diff_new_pack.fZHgKA/_old 2026-03-11 20:49:57.480728546 +0100 +++ /var/tmp/diff_new_pack.fZHgKA/_new 2026-03-11 20:49:57.492729032 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-smmap # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-smmap -Version: 5.0.2 +Version: 5.0.3 Release: 0 Summary: A pure python implementation of a sliding window memory map manager License: BSD-2-Clause ++++++ smmap-5.0.2.tar.gz -> smmap-5.0.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-5.0.2/PKG-INFO new/smmap-5.0.3/PKG-INFO --- old/smmap-5.0.2/PKG-INFO 2025-01-02 08:14:04.516153600 +0100 +++ new/smmap-5.0.3/PKG-INFO 2026-03-09 04:43:18.261509000 +0100 @@ -1,6 +1,6 @@ -Metadata-Version: 2.1 +Metadata-Version: 2.4 Name: smmap -Version: 5.0.2 +Version: 5.0.3 Summary: A pure Python implementation of a sliding window memory map manager Home-page: https://github.com/gitpython-developers/smmap Author: Sebastian Thiel @@ -23,10 +23,22 @@ 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 :: Only Requires-Python: >=3.7 Description-Content-Type: text/markdown License-File: LICENSE +Dynamic: author +Dynamic: author-email +Dynamic: classifier +Dynamic: description +Dynamic: description-content-type +Dynamic: home-page +Dynamic: license +Dynamic: license-file +Dynamic: platform +Dynamic: requires-python +Dynamic: summary ## Motivation diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-5.0.2/setup.py new/smmap-5.0.3/setup.py --- old/smmap-5.0.2/setup.py 2025-01-02 08:01:57.000000000 +0100 +++ new/smmap-5.0.3/setup.py 2026-03-09 04:29:45.000000000 +0100 @@ -44,6 +44,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", ], long_description=long_description, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-5.0.2/smmap/__init__.py new/smmap-5.0.3/smmap/__init__.py --- old/smmap-5.0.2/smmap/__init__.py 2025-01-02 08:04:07.000000000 +0100 +++ new/smmap-5.0.3/smmap/__init__.py 2026-03-09 04:29:55.000000000 +0100 @@ -3,7 +3,7 @@ __author__ = "Sebastian Thiel" __contact__ = "[email protected]" __homepage__ = "https://github.com/gitpython-developers/smmap" -version_info = (5, 0, 2) +version_info = (5, 0, 3) __version__ = '.'.join(str(i) for i in version_info) # make everything available in root package for convenience diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-5.0.2/smmap.egg-info/PKG-INFO new/smmap-5.0.3/smmap.egg-info/PKG-INFO --- old/smmap-5.0.2/smmap.egg-info/PKG-INFO 2025-01-02 08:14:04.000000000 +0100 +++ new/smmap-5.0.3/smmap.egg-info/PKG-INFO 2026-03-09 04:43:18.000000000 +0100 @@ -1,6 +1,6 @@ -Metadata-Version: 2.1 +Metadata-Version: 2.4 Name: smmap -Version: 5.0.2 +Version: 5.0.3 Summary: A pure Python implementation of a sliding window memory map manager Home-page: https://github.com/gitpython-developers/smmap Author: Sebastian Thiel @@ -23,10 +23,22 @@ 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 :: Only Requires-Python: >=3.7 Description-Content-Type: text/markdown License-File: LICENSE +Dynamic: author +Dynamic: author-email +Dynamic: classifier +Dynamic: description +Dynamic: description-content-type +Dynamic: home-page +Dynamic: license +Dynamic: license-file +Dynamic: platform +Dynamic: requires-python +Dynamic: summary ## Motivation
