diff mbox series

[meta-tensorflow] python3-keras: fix DEPENDS override and add missing pybind11 dependency

Message ID 20260427015644.749023-1-Xiaozhan.Li.CN@windriver.com
State New
Headers show
Series [meta-tensorflow] python3-keras: fix DEPENDS override and add missing pybind11 dependency | expand

Commit Message

Xiaozhan Li April 27, 2026, 1:56 a.m. UTC
The DEPENDS variable was first appended with += then overridden by a
direct = assignment, causing all previously declared build dependencies
to be silently dropped. Consolidate into a single DEPENDS += block and
add the missing python3-pybind11-native dependency.

Signed-off-by: Xiaozhan Li <Xiaozhan.Li.CN@windriver.com>
---
 recipes-devtools/python/python3-keras_3.13.2.bb | 3 ---
 1 file changed, 3 deletions(-)

Comments

Hongxu Jia April 27, 2026, 2:35 a.m. UTC | #1
On 4/27/26 09:56, Xiaozhan Li via lists.yoctoproject.org wrote:
> The DEPENDS variable was first appended with += then overridden by a
> direct = assignment, causing all previously declared build dependencies
> to be silently dropped. Consolidate into a single DEPENDS += block and
> add the missing python3-pybind11-native dependency.
>
> Signed-off-by: Xiaozhan Li <Xiaozhan.Li.CN@windriver.com>
> ---
>   recipes-devtools/python/python3-keras_3.13.2.bb | 3 ---
>   1 file changed, 3 deletions(-)
>
> diff --git a/recipes-devtools/python/python3-keras_3.13.2.bb b/recipes-devtools/python/python3-keras_3.13.2.bb
> index b5b9338..6bc8adb 100644
> --- a/recipes-devtools/python/python3-keras_3.13.2.bb
> +++ b/recipes-devtools/python/python3-keras_3.13.2.bb
> @@ -25,9 +25,6 @@ DEPENDS += " \
>       python3-h5py \
>       python3-mldtypes-native \
>       python3-packaging \
> -"
> -
> -DEPENDS = " \
>       python3-pybind11-native \
>   "
>   

Thanks for your contribution, merged

//Hongxu
diff mbox series

Patch

diff --git a/recipes-devtools/python/python3-keras_3.13.2.bb b/recipes-devtools/python/python3-keras_3.13.2.bb
index b5b9338..6bc8adb 100644
--- a/recipes-devtools/python/python3-keras_3.13.2.bb
+++ b/recipes-devtools/python/python3-keras_3.13.2.bb
@@ -25,9 +25,6 @@  DEPENDS += " \
     python3-h5py \
     python3-mldtypes-native \
     python3-packaging \
-"
-
-DEPENDS = " \
     python3-pybind11-native \
 "