From 92897ef01183f8438411876f6980218e2f121722 Mon Sep 17 00:00:00 2001 From: Chris Duf Date: Mon, 26 Dec 2022 19:51:52 +0100 Subject: [PATCH] python-devicetree: bump version to 0.0.2 Inconsistency between python-devicetree version numbers may be confusing: - the last version at PyPI is 0.0.2 - zephyr-rtos/python-devicetree/setup.py sets the version to 0.0.2 (this is probably the setup file used when uploading to PyPI) - zephyr-rtos/zephyr/scripts/dts/python-devicetree/setup.py sets the version to 0.0.1 This may suggest that the mirror repository, and PyPI, are more up-to-date than zephyr-rtos/zephyr/scripts/dts/python-devicetree. Repositories being otherwise mostly identical (1), also bumping the python-devicetree's version here seems a sane option. (1) Ignoring the doc directory (only at zephyr-rtos/python-devicetree). Signed-off-by: Chris Duf --- scripts/dts/python-devicetree/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dts/python-devicetree/setup.py b/scripts/dts/python-devicetree/setup.py index 590ba315104..21315ed2b0e 100644 --- a/scripts/dts/python-devicetree/setup.py +++ b/scripts/dts/python-devicetree/setup.py @@ -12,7 +12,7 @@ This is just a placeholder for moving Zephyr's devicetree libraries to PyPI. ''' -version = '0.0.1' +version = '0.0.2' setuptools.setup( # TBD, just use these for now.