diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2025-10-09 11:13:54 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-10-09 09:41:11 -0700 |
commit | 368ea9aa9a45955a17bd9f9c2baf7238f41701f7 (patch) | |
tree | bd5b3f2d94f0e500344c8263376bf60a2ba4594f /meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb | |
parent | b68dd1e77a74f0f9368c8a79c564299e7f1ec9a0 (diff) | |
download | meta-openembedded-368ea9aa9a45955a17bd9f9c2baf7238f41701f7.tar.gz |
python3-filelock: Upgrade 3.18.0 -> 3.20.0
Upgrade to release 3.20.0:
- Added tox.toml to sdist
- Updated docs with example
- Added 3.14 support and drop 3.9
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb b/meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb new file mode 100644 index 0000000000..4ce89a853e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-filelock_3.20.0.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | # SPDX-License-Identifier: MIT | ||
2 | # Copyright (C) 2023 iris-GmbH infrared & intelligent sensors | ||
3 | SUMMARY = "A single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication" | ||
4 | HOMEPAGE = "https://py-filelock.readthedocs.io/" | ||
5 | LICENSE = "Unlicense" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=911690f51af322440237a253d695d19f" | ||
7 | |||
8 | SRC_URI[sha256sum] = "711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4" | ||
9 | |||
10 | BBCLASSEXTEND = "native nativesdk" | ||
11 | |||
12 | inherit pypi python_hatchling | ||
13 | |||
14 | DEPENDS += "\ | ||
15 | python3-hatch-vcs-native \ | ||
16 | " | ||
17 | |||
18 | RDEPENDS:${PN} += " \ | ||
19 | python3-core \ | ||
20 | python3-logging \ | ||
21 | python3-asyncio \ | ||
22 | " | ||