commit | e48320fa24ca50227900ea2b47e2142d9ffc6340 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Wed Feb 12 16:23:46 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Fri Feb 21 08:24:08 2025 -0600 |
tree | afc70e4d87990238d7b410f2f9eb094e59e2442d | |
parent | 85fd4961228ff57b332c4e74625ee0e762519912 [diff] [blame] |
dtoc: 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/dtoc/setup.py b/tools/dtoc/setup.py index 5e092fe..ae9ad04 100644 --- a/tools/dtoc/setup.py +++ b/tools/dtoc/setup.py
@@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0+ -from distutils.core import setup +from setuptools import setup setup(name='dtoc', version='1.0', license='GPL-2.0+',