summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-05-25 14:57:24 +0800
committerKhem Raj <raj.khem@gmail.com>2023-05-25 08:57:47 -0700
commitf8cf386372ba9bca37d709c5f3fbdb885ea2d8ef (patch)
treefb9b36316e87fde8f4db6c2f8d838f85e34e146f /meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb
parent789a96494a707e9b6242354a12a0b71cf5e6ea50 (diff)
downloadmeta-openembedded-f8cf386372ba9bca37d709c5f3fbdb885ea2d8ef.tar.gz
python3-coverage: upgrade 7.2.5 -> 7.2.6
Changelog: ========== - Fix: the lcov command could raise an IndexError exception if a file is translated to Python but then executed under its own name. Jinja2 does this when rendering templates. Fixes issue 1553. - Python 3.12 beta 1 now inlines comprehensions. Previously they were compiled as invisible functions and coverage.py would warn you if they weren't completely executed. This no longer happens under Python 3.12. - Fix: the coverage debug sys command includes some environment variables in its output. This could have included sensitive data. Those values are now hidden with asterisks, closing issue 1628. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb
deleted file mode 100644
index fa6c5203e6..0000000000
--- a/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb
+++ /dev/null
@@ -1,21 +0,0 @@
1SUMMARY = "Code coverage measurement for Python"
2HOMEPAGE = "https://coverage.readthedocs.io"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
5
6SRC_URI[sha256sum] = "f99ef080288f09ffc687423b8d60978cf3a465d3f404a18d1a05474bd8575a47"
7
8inherit pypi setuptools3
9
10RDEPENDS:${PN} += " \
11 ${PYTHON_PN}-sqlite3 \
12 ${PYTHON_PN}-core \
13 ${PYTHON_PN}-pprint \
14 ${PYTHON_PN}-json \
15 ${PYTHON_PN}-xml \
16 ${PYTHON_PN}-crypt \
17 ${PYTHON_PN}-shell \
18 ${PYTHON_PN}-io \
19 ${PYTHON_PN}-toml \
20 ${PYTHON_PN}-multiprocessing \
21"