Re: [PATCH 02/18] py: Replace distutils.core with setuptools

2024-07-19 Thread Simon Glass
On Wed, 17 Jul 2024 at 15:29, Jiaxun Yang wrote: > > distutils is deprecated long ago and being removed in python 3.12. > > Signed-off-by: Jiaxun Yang > --- > tools/binman/setup.py | 2 +- > tools/buildman/requirements.txt | 1 + > tools/dtoc/setup.py | 2 +- > 3 files chan

[PATCH 02/18] py: Replace distutils.core with setuptools

2024-07-17 Thread Jiaxun Yang
distutils is deprecated long ago and being removed in python 3.12. Signed-off-by: Jiaxun Yang --- tools/binman/setup.py | 2 +- tools/buildman/requirements.txt | 1 + tools/dtoc/setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/binman/set