summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-packaging_24.1.bb
diff options
context:
space:
mode:
authorTim Orling <tim.orling@konsulko.com>2024-06-11 11:43:09 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-06-12 16:08:31 +0100
commitfeeb7282a9fd315c6cd64452978817e567427024 (patch)
tree5e5b79ba72f3bc7414280d64ff6cf4eadfd071ea /meta/recipes-devtools/python/python3-packaging_24.1.bb
parent08a58a7d73312231266974cd67d5924bfc93dccf (diff)
downloadpoky-feeb7282a9fd315c6cd64452978817e567427024.tar.gz
python3-packaging: upgrade 24.0 -> 24.1
What's Changed - pyupgrade/black/isort/flake8 → ruff by @DimitriPapadopoulos in #769 - Add support for Python 3.13 and drop EOL 3.7 by @hugovk in #783 - Bump the github-actions group with 4 updates by @dependabot in #782 - Fix typo in _parser docstring by @pradyunsg in #784 - Modernise type annotations using FA rules from ruff by @pradyunsg in #785 - Document markers.default_environment() by @edgarrmondragon in #753 - Bump the github-actions group with 3 updates by @dependabot in #789 - Work around platform.python_version() returning non PEP 440 compliant version for non-tagged CPython builds by @sbidoul in #802 https://github.com/pypa/packaging/compare/24.0...24.1 (From OE-Core rev: fe1fac5e49308a64c1a1c90e0e892203514a9ba9) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-packaging_24.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-packaging_24.1.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-packaging_24.1.bb b/meta/recipes-devtools/python/python3-packaging_24.1.bb
new file mode 100644
index 0000000000..596250b066
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-packaging_24.1.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Core utilities for Python packages"
2HOMEPAGE = "https://github.com/pypa/packaging"
3LICENSE = "Apache-2.0 | BSD-2-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
5
6SRC_URI[sha256sum] = "026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"
7
8inherit pypi python_flit_core
9
10BBCLASSEXTEND = "native nativesdk"
11
12# Bootstrap the native build
13DEPENDS:remove:class-native = "python3-build-native"
14RDEPENDS:${PN} += "python3-profile"
15
16do_compile:class-native () {
17 python_flit_core_do_manual_build
18}