From b3e692ecb450e3b37c61bf90b40c11f93917ab38 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 20 Jun 2025 12:03:06 +0300 Subject: python3-nocasedict: Upgrade 2.0.4 -> 2.1.0 Upgrade to release 2.1.0: - Dropped support for Python 3.6 and 3.7 because they are out of service and to simplify development dependencies. - Dev: Changed 'make install' to no longer perform an editable install, but a standalone install, since pip will remove support for editable installs. - Dev: Removed support for the env.var TEST_INSTALLED that used the installed package for testing, for simplicity. Now, the local package in the repository main directory is always used for testing. - Test: Python 3.13 was pinned to 3.13.0 to work around a pylint issue on Python 3.13.1. - Addressed safety issues up to 2025-04-27. - Dev: Added missing dependencies for development. - Test: Fixed the issue that coveralls was not found in the test workflow on MacOS with Python 3.9-3.11, by running it without login shell. Added Python 3.11 on MacOS to the normal tests. - Added support for Python 3.13. This required increasing the minimum version of several packages needed for development. - Added '__version_tuple__' with the integer versions. - Dev: Changed from setup.py to using pyproject.toml. - Dev: Split safety policy files into one for installation dependencies and one for development dependencies. - Dev: Split minimum-constraints.txt file into one for installation dependencies and one for development dependencies. - Dev: Cleanup in the Makefile. - Docs: Changed versions shown for the documentation to be master and the latest fix version of each minor version. Changed documentation links in README file to reference the master version. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-nocasedict_2.0.4.bb | 12 ------------ .../recipes-devtools/python/python3-nocasedict_2.1.0.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 12 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-nocasedict_2.0.4.bb create mode 100644 meta-python/recipes-devtools/python/python3-nocasedict_2.1.0.bb (limited to 'meta-python') diff --git a/meta-python/recipes-devtools/python/python3-nocasedict_2.0.4.bb b/meta-python/recipes-devtools/python/python3-nocasedict_2.0.4.bb deleted file mode 100644 index 31bd15f8b9..0000000000 --- a/meta-python/recipes-devtools/python/python3-nocasedict_2.0.4.bb +++ /dev/null @@ -1,12 +0,0 @@ -SUMMARY = "A case-insensitive ordered dictionary for Python" -HOMEPAGE = "https://github.com/pywbem/nocasedict" -LICENSE = "LGPL-2.1-only" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" - -SRC_URI[sha256sum] = "4ca934f65df57b10d0fcab5f0c39e9dccb93577ff9f22bef98265ddbf12f8af1" - -inherit pypi setuptools3 - -RDEPENDS:${PN} += " \ - python3-six \ -" diff --git a/meta-python/recipes-devtools/python/python3-nocasedict_2.1.0.bb b/meta-python/recipes-devtools/python/python3-nocasedict_2.1.0.bb new file mode 100644 index 0000000000..a7c3f55702 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-nocasedict_2.1.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "A case-insensitive ordered dictionary for Python" +HOMEPAGE = "https://github.com/pywbem/nocasedict" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" + +SRC_URI[sha256sum] = "b563d5851cbb0e0b10fbb6189ba87e0612d22e5a6f3a004a4573ab5b38aaaa7d" + +inherit pypi python_setuptools_build_meta + +DEPENDS += " \ + python3-setuptools-scm-native \ + python3-toml-native \ +" + +RDEPENDS:${PN} += " \ + python3-six \ +" -- cgit v1.2.3-54-g00ecf