diff options
author | Richard Leitner <dev@g0hl1n.net> | 2025-06-27 10:29:04 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2025-07-06 19:23:22 -0400 |
commit | 14a64afb38a79c274eb25100a446ea7c403ef06d (patch) | |
tree | 3d4455beb2770a85b50283c814167c344c57442d | |
parent | 0a047efb6761d8859d37bfbbe85f858e0bae8778 (diff) | |
download | meta-openembedded-14a64afb38a79c274eb25100a446ea7c403ef06d.tar.gz |
python3-can: upgrade 4.4.2 -> 4.5.0
python3-can 4.4.y requires msgpack~=1.0.0, but openembedded-core
versions newer than scarthgap provide msgpack 1.1.0 [1], causing
"pip check" to fail with the following error:
python-can 4.4.2 has requirement msgpack~=1.0.0; platform_system != "Windows", but you have msgpack 1.1.0.
This patch resolves the issue by updating python3-can to 4.5.0.
[1] https://layers.openembedded.org/layerindex/recipe/66997/
(cherry picked from commit f048d118f2ade5f7d90b919a20960218e245ca00)
Cc: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Leitner <dev@g0hl1n.net>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-can_4.5.0.bb (renamed from meta-python/recipes-devtools/python/python3-can_4.4.2.bb) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-can_4.4.2.bb b/meta-python/recipes-devtools/python/python3-can_4.5.0.bb index 31190a9f1d..8e32cee622 100644 --- a/meta-python/recipes-devtools/python/python3-can_4.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-can_4.5.0.bb | |||
@@ -4,13 +4,15 @@ SECTION = "devel/python" | |||
4 | LICENSE = "LGPL-3.0-only" | 4 | LICENSE = "LGPL-3.0-only" |
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e6a600fd5e1d9cbde2d983680233ad02" | 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e6a600fd5e1d9cbde2d983680233ad02" |
6 | 6 | ||
7 | SRC_URI[sha256sum] = "1c46c0935f39f7a9c3e76b03249af0580689ebf7a1844195e92f87257f009df5" | 7 | SRC_URI[sha256sum] = "d3684cebe5b028a148c1742b3a45cec4fcaf83a7f7c52d0680b2eaeaf52f8eb7" |
8 | 8 | ||
9 | PYPI_PACKAGE = "python_can" | 9 | PYPI_PACKAGE = "python_can" |
10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" |
11 | 11 | ||
12 | inherit pypi python_setuptools_build_meta | 12 | inherit pypi python_setuptools_build_meta |
13 | 13 | ||
14 | DEPENDS += "python3-setuptools-scm-native" | ||
15 | |||
14 | RDEPENDS:${PN} += "\ | 16 | RDEPENDS:${PN} += "\ |
15 | python3-aenum \ | 17 | python3-aenum \ |
16 | python3-asyncio \ | 18 | python3-asyncio \ |
@@ -21,6 +23,7 @@ RDEPENDS:${PN} += "\ | |||
21 | python3-json \ | 23 | python3-json \ |
22 | python3-logging \ | 24 | python3-logging \ |
23 | python3-misc \ | 25 | python3-misc \ |
26 | python3-msgpack \ | ||
24 | python3-netserver \ | 27 | python3-netserver \ |
25 | python3-packaging \ | 28 | python3-packaging \ |
26 | python3-pkg-resources \ | 29 | python3-pkg-resources \ |