Compare commits
10 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 374f92f7ea | |||
| bcc7377377 | |||
| 6b1809e2d1 | |||
| 5c6cc1c715 | |||
| 338573f2c4 | |||
| 2935a9bbb0 | |||
| 0ce4c50e13 | |||
| 90455d099c | |||
| 327b7c656f | |||
| 15208cf3bf |
BIN
cachetools-5.3.3.tar.gz
LFS
BIN
cachetools-5.3.3.tar.gz
LFS
Binary file not shown.
3
cachetools-6.1.0.tar.gz
Normal file
3
cachetools-6.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b4c4f404392848db3ce7aac34950d17be4d864da4b8b66911008e430bc544587
|
||||||
|
size 30714
|
||||||
@@ -1,3 +1,41 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 12 11:43:35 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- 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).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 16 06:12:36 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyroject macros.
|
||||||
|
- No more greedy globs in %files.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 24 08:18:44 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.5.2
|
||||||
|
* Reduce number of ``@cached`` lock/unlock operations.
|
||||||
|
* Improve documentation.
|
||||||
|
* Update CI environment.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 27 13:37:30 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.5.1
|
||||||
|
* Add documentation regarding caching of exceptions.
|
||||||
|
* Officially support Python 3.13.
|
||||||
|
* Update CI environment.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 28 19:57:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 5.5.0:
|
||||||
|
* TTLCache.expire() returns iterable of expired (key, value)
|
||||||
|
pairs.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 2 13:10:46 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Tue Apr 2 13:10:46 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-cachetools
|
# spec file for package python-cachetools
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,14 +18,16 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-cachetools
|
Name: python-cachetools
|
||||||
Version: 5.3.3
|
Version: 6.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Extensible memoizing collections and decorators
|
Summary: Extensible memoizing collections and decorators
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
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 setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@@ -40,10 +42,10 @@ function decorator.
|
|||||||
%setup -q -n cachetools-%{version}
|
%setup -q -n cachetools-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -52,6 +54,7 @@ function decorator.
|
|||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc CHANGELOG.rst README.rst
|
%doc CHANGELOG.rst README.rst
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/cachetools
|
||||||
|
%{python_sitelib}/cachetools-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user