From 45e6e47491189348cf3d54e98cfeceb835847b72 Mon Sep 17 00:00:00 2001 From: iwanicki92 Date: Sun, 2 Aug 2026 17:51:38 +0200 Subject: [PATCH] python3-rich: add missing runtime dependencies `python3-markdown-it-py` was missing along with some python3 modules. I went through the code and added everything imported that I noticed, except modules imported on Windows. Signed-off-by: iwanicki92 Signed-off-by: Khem Raj --- .../python-rich/python3-rich_15.0.0.bb | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/meta-python/recipes-extended/python-rich/python3-rich_15.0.0.bb b/meta-python/recipes-extended/python-rich/python3-rich_15.0.0.bb index 2ab3b2fdbc..e15e842535 100644 --- a/meta-python/recipes-extended/python-rich/python3-rich_15.0.0.bb +++ b/meta-python/recipes-extended/python-rich/python3-rich_15.0.0.bb @@ -12,10 +12,21 @@ SRC_URI[sha256sum] = "edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b inherit pypi python_poetry_core -RDEPENDS:${PN} = "python3-html \ - python3-image \ - python3-pygments \ - python3-unixadmin \ - " +RDEPENDS:${PN} = " \ + python3-datetime \ + python3-html \ + python3-image \ + python3-io \ + python3-json \ + python3-logging \ + python3-markdown-it-py \ + python3-math \ + python3-mmap \ + python3-numbers \ + python3-pickle \ + python3-pygments \ + python3-threading \ + python3-unixadmin \ +" BBCLASSEXTEND = "native nativesdk"