17
0

10 Commits

Author SHA256 Message Date
374f92f7ea Accepting request 1292330 from devel:languages:python
- update to 6.1.0:
  * Improve LFUCache insertion performance by switching to an
    implementation based on the cacheing library.
  * Update CI environment.
  * Require Python 3.9 or later (breaking change).

OBS-URL: https://build.opensuse.org/request/show/1292330
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cachetools?expand=0&rev=26
2025-07-15 14:42:56 +00:00
bcc7377377 - update to 6.1.0:
* Improve LFUCache insertion performance by switching to an
    implementation based on the cacheing library.
  * Update CI environment.
  * Require Python 3.9 or later (breaking change).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachetools?expand=0&rev=51
2025-07-12 11:43:50 +00:00
6b1809e2d1 Accepting request 1285948 from devel:languages:python
- Switch to pyroject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/request/show/1285948
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cachetools?expand=0&rev=25
2025-06-17 16:20:17 +00:00
5c6cc1c715 - Switch to pyroject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachetools?expand=0&rev=49
2025-06-16 06:18:29 +00:00
338573f2c4 Accepting request 1248023 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1248023
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cachetools?expand=0&rev=24
2025-02-25 15:39:13 +00:00
2935a9bbb0 Accepting request 1248017 from home:glaubitz:branches:devel:languages:python
- Update to 5.5.2
  * Reduce number of ``@cached`` lock/unlock operations.
  * Improve documentation.
  * Update CI environment.

OBS-URL: https://build.opensuse.org/request/show/1248017
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachetools?expand=0&rev=47
2025-02-24 08:43:52 +00:00
0ce4c50e13 Accepting request 1240758 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1240758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cachetools?expand=0&rev=23
2025-01-29 15:09:51 +00:00
90455d099c Accepting request 1240539 from home:glaubitz:branches:devel:languages:python
- Update to 5.5.1
  * Add documentation regarding caching of exceptions.
  * Officially support Python 3.13.
  * Update CI environment.

OBS-URL: https://build.opensuse.org/request/show/1240539
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachetools?expand=0&rev=45
2025-01-28 10:27:30 +00:00
327b7c656f Accepting request 1206442 from devel:languages:python
- update to 5.5.0:
  * TTLCache.expire() returns iterable of expired (key, value)
    pairs.

OBS-URL: https://build.opensuse.org/request/show/1206442
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cachetools?expand=0&rev=22
2024-10-09 20:03:25 +00:00
15208cf3bf - update to 5.5.0:
* TTLCache.expire() returns iterable of expired (key, value)
    pairs.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachetools?expand=0&rev=43
2024-09-28 19:58:52 +00:00
4 changed files with 5 additions and 39 deletions

3
cachetools-6.1.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b4c4f404392848db3ce7aac34950d17be4d864da4b8b66911008e430bc544587
size 30714

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82c5c05585e70b6ba2d3ae09ea60b79548872185d2f24ae1f2709d37299fd607
size 31731

View File

@@ -1,37 +1,3 @@
-------------------------------------------------------------------
Thu Jan 8 13:09:06 UTC 2026 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 6.2.4
* Fix license information displayed on PyPI be using an updated
version of ``twine`` for uploading.
- from version 6.2.3
* Improve documentation regarding ``@cachedmethod`` with ``condition``
parameter.
* Minor style and readability improvements.
* Modernize build environment.
* Update CI environment.
- Update BuildRequires from pyproject.toml
-------------------------------------------------------------------
Thu Nov 20 08:21:17 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 6.2.2
* Minor improvements from GitHub Copilot code review.
* Improve documentation.
- from version 6.2.1
* Add support for Python 3.14.
* Improve documentation.
* Update CI environment.
-------------------------------------------------------------------
Wed Sep 10 08:24:04 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 6.2.0
* Improve general ``RRCache`` performance by storing cache keys in an
additional sequence container. Note that this will increase memory
consumption.
* Add more unit tests.
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 12 11:43:35 UTC 2025 - Dirk Müller <dmueller@suse.com> Sat Jul 12 11:43:35 UTC 2025 - Dirk Müller <dmueller@suse.com>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-cachetools Name: python-cachetools
Version: 6.2.4 Version: 6.1.0
Release: 0 Release: 0
Summary: Extensible memoizing collections and decorators Summary: Extensible memoizing collections and decorators
License: MIT License: MIT
@@ -26,7 +26,7 @@ Group: Development/Languages/Python
URL: https://github.com/tkem/cachetools URL: https://github.com/tkem/cachetools
Source: https://files.pythonhosted.org/packages/source/c/cachetools/cachetools-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/c/cachetools/cachetools-%{version}.tar.gz
BuildRequires: %{python_module pip} BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 61.0.0} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel} BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros