Re: [yocto-patches] [meta-tensorflow][PATCH] python3-keras: fix DEPENDS override and add missing pybind11 dependency
Hongxu Jia <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> > --- > 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