diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2022-12-27 14:44:11 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-12-27 16:03:06 -0800 |
commit | a4f6e682a67c2b18c7d81fd7ad352502d322d384 (patch) | |
tree | 6766d5eba4a4a59e0efb08cccc5cdaae941ba51f /meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb | |
parent | 32a830774f1fb620db08e336f7ad137bd136decb (diff) | |
download | meta-openembedded-a4f6e682a67c2b18c7d81fd7ad352502d322d384.tar.gz |
python3-coverage: upgrade 6.5.0 -> 7.0.1
Changelog:
==========
-When checking if a file mapping resolved to a file that exists, we weren't
considering files in .whl files. This is now fixed, closing issue 1511.
-File pattern rules were too strict, forbidding plus signs and curly braces
in directory and file names. This is now fixed, closing issue 1513.
-Unusual Unicode or control characters in source files could prevent reporting.
This is now fixed, closing issue 1512.
-The PyPy wheel now installs on PyPy 3.7, 3.8, and 3.9, closing issue 1510.
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.0.1.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb b/meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb new file mode 100644 index 0000000000..caf6ba14f7 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb | |||
@@ -0,0 +1,19 @@ | |||
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] = "a4a574a19eeb67575a5328a5760bbbb737faa685616586a9f9da4281f940109c" | ||
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 | " | ||