diff options
author | Tom Rini <trini@konsulko.com> | 2025-02-12 16:23:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-02-21 08:24:27 -0600 |
commit | c128ec4647267c8d7d667cbb1dd9037a72f70934 (patch) | |
tree | 6b6971024ce23082d388179046000d20565dd624 | |
parent | 2fc363c7005829b28449ee2fe4c0673ae667e135 (diff) |
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 <trini@konsulko.com>
-rw-r--r-- | tools/binman/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
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+', |