diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-05-25 14:57:24 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-05-25 08:57:47 -0700 |
| commit | f8cf386372ba9bca37d709c5f3fbdb885ea2d8ef (patch) | |
| tree | fb9b36316e87fde8f4db6c2f8d838f85e34e146f /meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb | |
| parent | 789a96494a707e9b6242354a12a0b71cf5e6ea50 (diff) | |
| download | meta-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.6.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb new file mode 100644 index 0000000000..b13384cd21 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.6.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Code coverage measurement for Python" | ||
| 2 | HOMEPAGE = "https://coverage.readthedocs.io" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "2025f913f2edb0272ef15d00b1f335ff8908c921c8eb2013536fcaf61f5a683d" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | RDEPENDS:${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 | " | ||
