summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-06-10 11:32:56 +0800
committerKhem Raj <raj.khem@gmail.com>2025-06-09 21:24:12 -0700
commit93d069fdbcc8e7d82e7552eeab5d0b252844ced2 (patch)
tree9851f666f60125d6159b913abf3f562f2cae3342 /meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb
parent1255cd177f056f415cd8d3e54667b02e17b801a5 (diff)
downloadmeta-openembedded-93d069fdbcc8e7d82e7552eeab5d0b252844ced2.tar.gz
python3-cachetools: upgrade 5.5.2 -> 6.0.0
Changgelog: ============= - Require Python 3.9 or later - Remove MRUCache and the @func.mru_cache decorator - Add an optional condition parameter to the @cached and @cachedmethod decorators, which, when used with a threading.Condition instance, should improve cache stampede issues in massively parallel environments. - Convert the cachetools.func decorators to use a threading.Condition instance to deal with cache stampede issues. Note that this may result in a noticable performance degradation, depending on your actual use case. - Deprecate support for cache(self) returning None to suppress caching with the @cachedmethod decorator. - Improve documentation. - Update CI environment. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb b/meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb
deleted file mode 100644
index d2b65b3d29..0000000000
--- a/meta-python/recipes-devtools/python/python3-cachetools_5.5.2.bb
+++ /dev/null
@@ -1,19 +0,0 @@
1SUMMARY = "Extensible memoizing collections and decorators"
2HOMEPAGE = "https://github.com/tkem/cachetools"
3DESCRIPTION = "This module provides various memoizing \
4collections and decorators, including variants of the \
5Python 3 Standard Library @lru_cache function decorator."
6SECTION = "devel/python"
7
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=e21bbe53b2730bfe1911cf381b81821e"
10
11inherit pypi python_setuptools_build_meta ptest-python-pytest
12
13RDEPENDS:${PN} += " \
14 python3-math \
15"
16
17SRC_URI[sha256sum] = "1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4"
18
19BBCLASSEXTEND = "native nativesdk"