diff --git a/cachetools-5.5.0.tar.gz b/cachetools-5.5.0.tar.gz deleted file mode 100644 index 897fc68a448fab8a8f4dea100dd98d9c467c1d08..0000000000000000000000000000000000000000 Binary files a/cachetools-5.5.0.tar.gz and /dev/null differ diff --git a/cachetools-5.5.2.tar.gz b/cachetools-5.5.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..4733affb02c414a981364bb53a3f3650803586d9 Binary files /dev/null and b/cachetools-5.5.2.tar.gz differ diff --git a/python-cachetools.spec b/python-cachetools.spec index 2ec1cdc148541f6c847762efe8016cb17e8ef301..bbbff54edf5d5f349d25a2f8935ba50af94496fc 100644 --- a/python-cachetools.spec +++ b/python-cachetools.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-cachetools -Version: 5.5.0 +Version: 5.5.2 Release: 1 Summary: Extensible memoizing collections and decorators License: MIT URL: https://github.com/tkem/cachetools/ -Source0: https://files.pythonhosted.org/packages/c3/38/a0f315319737ecf45b4319a8cd1f3a908e29d9277b46942263292115eee7/cachetools-5.5.0.tar.gz +Source0: https://files.pythonhosted.org/packages/6c/81/3747dad6b14fa2cf53fcf10548cf5aea6913e96fab41a3c198676f8948a5/cachetools-5.5.2.tar.gz BuildArch: noarch %description This module provides various memoizing collections and decorators, @@ -80,6 +80,15 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Wed May 14 2025 Dongxing Wang - 5.5.2-1 +- Update to version 5.5.2 + Add note about maxsize being an actual number + Reduce number of decorator lock/unlock operations in case of cache miss + Add test case for decorator lock/unlock operations + Show missing lines in tox coverage report + Add documentation regarding caching of exceptions + Officially support Python 3.13 + * Fri Oct 11 2024 lixiaoyong - 5.5.0-1 - Update to version 5.5.0 - ``TTLCache.expire()`` returns iterable of expired ``(key, value)``