diff options
| author | Sean Anderson <[email protected]> | 2022-11-27 16:55:02 -0500 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2023-01-05 19:21:56 -0700 |
| commit | e0ddd895f66a401dd69f561e7960609d7730e5ec (patch) | |
| tree | 1c98db80304cc4ef39ff44df3fc25b6e79f88f53 | |
| parent | a95410696d21d38b629c61a09c100197c5fc533a (diff) | |
patman: Switch to setuptools
distutils is about to meet its demise [1]. Switch to setuptools.
[1] https://peps.python.org/pep-0632/
Signed-off-by: Sean Anderson <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | tools/patman/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/setup.py b/tools/patman/setup.py index 43fdc00ce6f..5643bf15035 100644 --- a/tools/patman/setup.py +++ b/tools/patman/setup.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0+ -from distutils.core import setup +from setuptools import setup setup(name='patman', version='1.0', license='GPL-2.0+', |
