From 45c05efdc95eb676071e3592ae3a167179bd0a2c Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 27 Feb 2023 16:05:52 +0800 Subject: python3-coverage: upgrade 7.1.0 -> 7.2.0 Changelog: ========== - Added a new setting "[report] exclude_also" to let you add more exclusions without overwriting the defaults. Thanks, 'Alpha Chen '_, closing 'issue 1391_'. - Added a :meth:'.CoverageData.purge_files' method to remove recorded data for a particular file. Contributed by 'Stephan Deibel '_. - Fix: when reporting commands fail, they will no longer congratulate themselves with messages like "Wrote XML report to file.xml" before spewing a traceback about their failure. - Fix: arguments in the public API that name file paths now accept pathlib.Path objects. This includes the "data_file" and "config_file" arguments to the Coverage constructor and the "basename" argument to CoverageData. Closes 'issue 1552'_. - Fix: In some embedded environments, an IndexError could occur on stop() when the originating thread exits before completion. This is now fixed, thanks to 'Russell Keith-Magee '_, closing 'issue 1542'_. - Added a "py.typed" file to announce our type-hintedness. Thanks, 'KotlinIsland '_. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../python/python3-coverage_7.1.0.bb | 21 --------------------- .../python/python3-coverage_7.2.0.bb | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-coverage_7.1.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-coverage_7.2.0.bb (limited to 'meta-python/recipes-devtools') diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.1.0.bb b/meta-python/recipes-devtools/python/python3-coverage_7.1.0.bb deleted file mode 100644 index 358a0ec199..0000000000 --- a/meta-python/recipes-devtools/python/python3-coverage_7.1.0.bb +++ /dev/null @@ -1,21 +0,0 @@ -SUMMARY = "Code coverage measurement for Python" -HOMEPAGE = "https://coverage.readthedocs.io" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" - -SRC_URI[sha256sum] = "10188fe543560ec4874f974b5305cd1a8bdcfa885ee00ea3a03733464c4ca265" - -inherit pypi setuptools3 - -RDEPENDS:${PN} += " \ - ${PYTHON_PN}-sqlite3 \ - ${PYTHON_PN}-core \ - ${PYTHON_PN}-pprint \ - ${PYTHON_PN}-json \ - ${PYTHON_PN}-xml \ - ${PYTHON_PN}-crypt \ - ${PYTHON_PN}-shell \ - ${PYTHON_PN}-io \ - ${PYTHON_PN}-toml \ - ${PYTHON_PN}-multiprocessing \ -" diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.0.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.0.bb new file mode 100644 index 0000000000..c51f9ca553 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.0.bb @@ -0,0 +1,21 @@ +SUMMARY = "Code coverage measurement for Python" +HOMEPAGE = "https://coverage.readthedocs.io" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" + +SRC_URI[sha256sum] = "9cc9c41aa5af16d845b53287051340c363dd03b7ef408e45eec3af52be77810d" + +inherit pypi setuptools3 + +RDEPENDS:${PN} += " \ + ${PYTHON_PN}-sqlite3 \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-pprint \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-xml \ + ${PYTHON_PN}-crypt \ + ${PYTHON_PN}-shell \ + ${PYTHON_PN}-io \ + ${PYTHON_PN}-toml \ + ${PYTHON_PN}-multiprocessing \ +" -- cgit v1.2.3-54-g00ecf