From: Tom Rini Date: Wed, 12 Feb 2025 22:23:39 +0000 (-0600) Subject: binman: Switch to setuptools X-Git-Tag: v2025.07-rc1~18^2~83^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c128ec4647267c8d7d667cbb1dd9037a72f70934;p=thirdparty%2Fu-boot.git binman: Switch to setuptools With the distutils module having been removed with Python 3.12, switch to using setuptools instead. Signed-off-by: Tom Rini --- diff --git a/tools/binman/setup.py b/tools/binman/setup.py index 9a9206eb044..bec078a3d9b 100644 --- a/tools/binman/setup.py +++ b/tools/binman/setup.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0+ -from distutils.core import setup +from setuptools import setup setup(name='binman', version='1.0', license='GPL-2.0+',