Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-cachetools for 
openSUSE:Factory checked in at 2026-05-04 21:17:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cachetools (Old)
 and      /work/SRC/openSUSE:Factory/.python-cachetools.new.30200 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cachetools"

Mon May  4 21:17:07 2026 rev:32 rq:1350514 version:7.0.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cachetools/python-cachetools.changes      
2026-03-17 19:02:04.742672490 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-cachetools.new.30200/python-cachetools.changes
   2026-05-04 21:17:13.191843144 +0200
@@ -1,0 +2,8 @@
+Sun Apr 26 10:00:35 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 7.0.6:
+  * Minor code improvements.
+  * Update project URLs.
+  * Update CI environment.
+
+-------------------------------------------------------------------

Old:
----
  cachetools-7.0.5.tar.gz

New:
----
  cachetools-7.0.6.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-cachetools.spec ++++++
--- /var/tmp/diff_new_pack.U3sOHd/_old  2026-05-04 21:17:13.759866405 +0200
+++ /var/tmp/diff_new_pack.U3sOHd/_new  2026-05-04 21:17:13.763866568 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-cachetools
-Version:        7.0.5
+Version:        7.0.6
 Release:        0
 Summary:        Extensible memoizing collections and decorators
 License:        MIT

++++++ cachetools-7.0.5.tar.gz -> cachetools-7.0.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cachetools-7.0.5/CHANGELOG.rst 
new/cachetools-7.0.6/CHANGELOG.rst
--- old/cachetools-7.0.5/CHANGELOG.rst  2026-03-09 21:27:23.000000000 +0100
+++ new/cachetools-7.0.6/CHANGELOG.rst  2026-04-20 20:57:12.000000000 +0200
@@ -1,3 +1,13 @@
+v7.0.6 (2026-04-20)
+===================
+
+- Minor code improvements.
+
+- Update project URLs.
+
+- Update CI environment.
+
+
 v7.0.5 (2026-03-09)
 ===================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cachetools-7.0.5/PKG-INFO 
new/cachetools-7.0.6/PKG-INFO
--- old/cachetools-7.0.5/PKG-INFO       2026-03-09 21:51:16.601176500 +0100
+++ new/cachetools-7.0.6/PKG-INFO       2026-04-20 20:58:42.338762300 +0200
@@ -1,11 +1,16 @@
 Metadata-Version: 2.4
 Name: cachetools
-Version: 7.0.5
+Version: 7.0.6
 Summary: Extensible memoizing collections and decorators
 Author-email: Thomas Kemmer <[email protected]>
 Maintainer-email: Thomas Kemmer <[email protected]>
 License-Expression: MIT
 Project-URL: Homepage, https://github.com/tkem/cachetools/
+Project-URL: Documentation, https://cachetools.readthedocs.io/en/stable/
+Project-URL: Source, https://github.com/tkem/cachetools/
+Project-URL: Repository, https://github.com/tkem/cachetools/
+Project-URL: Issues, https://github.com/tkem/cachetools/issues
+Project-URL: Changelog, 
https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cachetools-7.0.5/pyproject.toml 
new/cachetools-7.0.6/pyproject.toml
--- old/cachetools-7.0.5/pyproject.toml 2026-02-01 19:54:12.000000000 +0100
+++ new/cachetools-7.0.6/pyproject.toml 2026-04-20 20:57:12.000000000 +0200
@@ -32,6 +32,11 @@
 
 [project.urls]
 Homepage = "https://github.com/tkem/cachetools/";
+Documentation = "https://cachetools.readthedocs.io/en/stable/";
+Source = "https://github.com/tkem/cachetools/";
+Repository = "https://github.com/tkem/cachetools/";
+Issues = "https://github.com/tkem/cachetools/issues";
+Changelog = "https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst";
 
 [tool.setuptools]
 package-dir = {"" = "src"}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cachetools-7.0.5/src/cachetools/__init__.py 
new/cachetools-7.0.6/src/cachetools/__init__.py
--- old/cachetools-7.0.5/src/cachetools/__init__.py     2026-03-09 
21:27:23.000000000 +0100
+++ new/cachetools-7.0.6/src/cachetools/__init__.py     2026-04-20 
20:57:12.000000000 +0200
@@ -12,7 +12,7 @@
     "cachedmethod",
 )
 
-__version__ = "7.0.5"
+__version__ = "7.0.6"
 
 import collections
 import collections.abc
@@ -397,7 +397,7 @@
         def __getattr__(self, name):
             return getattr(self.__timer, name)
 
-    def __init__(self, maxsize, timer=time.monotonic, getsizeof=None):
+    def __init__(self, maxsize, timer, getsizeof=None):
         Cache.__init__(self, maxsize, getsizeof)
         self.__timer = _TimedCache._Timer(timer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cachetools-7.0.5/src/cachetools.egg-info/PKG-INFO 
new/cachetools-7.0.6/src/cachetools.egg-info/PKG-INFO
--- old/cachetools-7.0.5/src/cachetools.egg-info/PKG-INFO       2026-03-09 
21:51:16.000000000 +0100
+++ new/cachetools-7.0.6/src/cachetools.egg-info/PKG-INFO       2026-04-20 
20:58:42.000000000 +0200
@@ -1,11 +1,16 @@
 Metadata-Version: 2.4
 Name: cachetools
-Version: 7.0.5
+Version: 7.0.6
 Summary: Extensible memoizing collections and decorators
 Author-email: Thomas Kemmer <[email protected]>
 Maintainer-email: Thomas Kemmer <[email protected]>
 License-Expression: MIT
 Project-URL: Homepage, https://github.com/tkem/cachetools/
+Project-URL: Documentation, https://cachetools.readthedocs.io/en/stable/
+Project-URL: Source, https://github.com/tkem/cachetools/
+Project-URL: Repository, https://github.com/tkem/cachetools/
+Project-URL: Issues, https://github.com/tkem/cachetools/issues
+Project-URL: Changelog, 
https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: Operating System :: OS Independent

Reply via email to