commit | 80d31bc87fee1387e26ce749ac4d3106f2491495 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Wed Feb 12 16:23:39 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Fri Feb 21 08:24:27 2025 -0600 |
tree | 6b6971024ce23082d388179046000d20565dd624 | |
parent | e48320fa24ca50227900ea2b47e2142d9ffc6340 [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>
diff --git a/tools/binman/setup.py b/tools/binman/setup.py index 9a9206e..bec078a 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+',