[PATCH] pylibfdt: Fix version normalization warning
Simon Glass
sjg at chromium.org
Fri Dec 16 19:34:30 CET 2022
Hi Marek,
On Thu, 15 Dec 2022 at 14:38, Marek Vasut <marex at denx.de> wrote:
>
> Fix the following version normalization warning:
> "
> /usr/lib/python3/dist-packages/setuptools/dist.py:530: UserWarning: Normalizing '2023.01' to '2023.1'
> "
>
> Using suggestion from Richard Jones:
> https://github.com/pypa/setuptools/issues/308#issuecomment-405817468
>
> Signed-off-by: Marek Vasut <marex at denx.de>
> ---
> Cc: Tom Rini <trini at konsulko.com>
> Cc: Simon Glass <sjg at chromium.org>
> ---
> scripts/dtc/pylibfdt/setup.py | 4 ++++
> 1 file changed, 4 insertions(+)
Reviewed-by: Simon Glass <sjg at chromium.org>
Another option would be to drop the leading 0 from U-Boot, but that
would mess with sorting so that 2022.10 would come before 2022.04
>
> diff --git a/scripts/dtc/pylibfdt/setup.py b/scripts/dtc/pylibfdt/setup.py
> index ec1fc5002b0..9abdb57595a 100755
> --- a/scripts/dtc/pylibfdt/setup.py
> +++ b/scripts/dtc/pylibfdt/setup.py
> @@ -22,10 +22,14 @@ allows this script to be run stand-alone, e.g.:
>
> from setuptools import setup, Extension
> from setuptools.command.build_py import build_py as _build_py
> +from setuptools.extern.packaging import version
> import os
> import re
> import sys
>
> +# Disable version normalization
> +version.Version = version.LegacyVersion
> +
> srcdir = os.path.dirname(__file__)
>
> with open(os.path.join(srcdir, "../README"), "r") as fh:
> --
> 2.35.1
>
More information about the U-Boot
mailing list