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 2023-05-30 22:01:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-cachetools (Old) and /work/SRC/openSUSE:Factory/.python-cachetools.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cachetools" Tue May 30 22:01:39 2023 rev:19 rq:1089608 version:5.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-cachetools/python-cachetools.changes 2023-04-22 22:02:45.346039825 +0200 +++ /work/SRC/openSUSE:Factory/.python-cachetools.new.1533/python-cachetools.changes 2023-05-30 22:01:40.946741557 +0200 @@ -1,0 +2,6 @@ +Mon May 29 16:03:19 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 5.3.1: + * Depend on Python >= 3.7. + +------------------------------------------------------------------- Old: ---- cachetools-5.3.0.tar.gz New: ---- cachetools-5.3.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-cachetools.spec ++++++ --- /var/tmp/diff_new_pack.Ae25iH/_old 2023-05-30 22:01:41.402744245 +0200 +++ /var/tmp/diff_new_pack.Ae25iH/_new 2023-05-30 22:01:41.410744292 +0200 @@ -20,7 +20,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?sle15_python_module_pythons} Name: python-cachetools -Version: 5.3.0 +Version: 5.3.1 Release: 0 Summary: Extensible memoizing collections and decorators License: MIT ++++++ cachetools-5.3.0.tar.gz -> cachetools-5.3.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/CHANGELOG.rst new/cachetools-5.3.1/CHANGELOG.rst --- old/cachetools-5.3.0/CHANGELOG.rst 2023-01-22 23:22:32.000000000 +0100 +++ new/cachetools-5.3.1/CHANGELOG.rst 2023-05-27 22:34:14.000000000 +0200 @@ -1,3 +1,9 @@ +v5.3.1 (2023-05-27) +=================== + +- Depend on Python >= 3.7. + + v5.3.0 (2023-01-22) =================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/PKG-INFO new/cachetools-5.3.1/PKG-INFO --- old/cachetools-5.3.0/PKG-INFO 2023-01-22 23:29:41.295361500 +0100 +++ new/cachetools-5.3.1/PKG-INFO 2023-05-27 22:36:33.982085700 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: cachetools -Version: 5.3.0 +Version: 5.3.1 Summary: Extensible memoizing collections and decorators Home-page: https://github.com/tkem/cachetools/ Author: Thomas Kemmer @@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Topic :: Software Development :: Libraries :: Python Modules -Requires-Python: ~=3.7 +Requires-Python: >=3.7 License-File: LICENSE cachetools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/setup.cfg new/cachetools-5.3.1/setup.cfg --- old/cachetools-5.3.0/setup.cfg 2023-01-22 23:29:41.295361500 +0100 +++ new/cachetools-5.3.1/setup.cfg 2023-05-27 22:36:33.982085700 +0200 @@ -27,7 +27,7 @@ package_dir = = src packages = find: -python_requires = ~= 3.7 +python_requires = >= 3.7 [options.packages.find] where = src diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/src/cachetools/__init__.py new/cachetools-5.3.1/src/cachetools/__init__.py --- old/cachetools-5.3.0/src/cachetools/__init__.py 2023-01-22 23:22:12.000000000 +0100 +++ new/cachetools-5.3.1/src/cachetools/__init__.py 2023-05-27 22:32:14.000000000 +0200 @@ -13,7 +13,7 @@ "cachedmethod", ) -__version__ = "5.3.0" +__version__ = "5.3.1" import collections import collections.abc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/src/cachetools.egg-info/PKG-INFO new/cachetools-5.3.1/src/cachetools.egg-info/PKG-INFO --- old/cachetools-5.3.0/src/cachetools.egg-info/PKG-INFO 2023-01-22 23:29:41.000000000 +0100 +++ new/cachetools-5.3.1/src/cachetools.egg-info/PKG-INFO 2023-05-27 22:36:33.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: cachetools -Version: 5.3.0 +Version: 5.3.1 Summary: Extensible memoizing collections and decorators Home-page: https://github.com/tkem/cachetools/ Author: Thomas Kemmer @@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Topic :: Software Development :: Libraries :: Python Modules -Requires-Python: ~=3.7 +Requires-Python: >=3.7 License-File: LICENSE cachetools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cachetools-5.3.0/tox.ini new/cachetools-5.3.1/tox.ini --- old/cachetools-5.3.0/tox.ini 2021-12-19 12:39:54.000000000 +0100 +++ new/cachetools-5.3.1/tox.ini 2023-03-17 22:03:01.000000000 +0100 @@ -32,6 +32,7 @@ deps = flake8 flake8-black; implementation_name == "cpython" + black==22.12.0; implementation_name == "cpython" flake8-bugbear flake8-import-order commands =