From 7b8a30eceabe7d8828d082c1bfe2458423bbac2f Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Sun, 30 Jun 2024 11:09:05 -0500 Subject: [PATCH] pylibfdt: fix Python version In commit "pylibfdt: Remove some apparently deprecated options from setup.py" the scm version tracking was removed. But it was not replaced with the fixed version. This causes the Python modules to be installed as version '0.0.0'. Signed-off-by: Brandon Maier Signed-off-by: David Gibson --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 602caab..293bb6b 100755 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ class build_py(_build_py): setup( name='libfdt', + version=version, cmdclass = {'build_py' : build_py}, author='Simon Glass', author_email='sjg@chromium.org', @@ -72,5 +73,4 @@ setup( "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Operating System :: OS Independent", ], - )