diff options
author | Frieder Schrempf <frieder.schrempf@kontron.de> | 2023-08-17 11:11:49 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-17 16:54:40 -0700 |
commit | 65f9d868bbc1e203b1cd718d9150555b2926ef6a (patch) | |
tree | e1eed098dcfbf3f665a7b6acad62769c04b9da6b | |
parent | 345d000bab7953c27f3d3e5c256540cf5e4ce0ef (diff) | |
download | meta-openembedded-65f9d868bbc1e203b1cd718d9150555b2926ef6a.tar.gz |
python3-can: Add missing runtime dependencies
According to the setup.py of v4.2.2 [1] the following runtime
dependencies are currently missing. Add them.
* packaging
* setuptools
[1] https://github.com/hardbyte/python-can/blob/4.2.2/setup.py
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-can_4.2.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-can_4.2.2.bb b/meta-python/recipes-devtools/python/python3-can_4.2.2.bb index 7ecbf12073..f3cfd17244 100644 --- a/meta-python/recipes-devtools/python/python3-can_4.2.2.bb +++ b/meta-python/recipes-devtools/python/python3-can_4.2.2.bb | |||
@@ -20,7 +20,9 @@ RDEPENDS:${PN} += " \ | |||
20 | python3-logging \ | 20 | python3-logging \ |
21 | python3-misc \ | 21 | python3-misc \ |
22 | python3-netserver \ | 22 | python3-netserver \ |
23 | python3-packaging \ | ||
23 | python3-pkg-resources \ | 24 | python3-pkg-resources \ |
25 | python3-setuptools \ | ||
24 | python3-sqlite3 \ | 26 | python3-sqlite3 \ |
25 | python3-typing-extensions \ | 27 | python3-typing-extensions \ |
26 | python3-wrapt \ | 28 | python3-wrapt \ |