summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pluggy_1.2.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-06-27 15:17:22 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-28 07:56:33 +0100
commit14ddbedbd2d6a877cd693c833f05df8f8acd5909 (patch)
tree1192fb62ca706f7e694d2e1d45d24f7a58e0aa84 /meta/recipes-devtools/python/python3-pluggy_1.2.0.bb
parentac297ca95c98b0767fdcbfc4e7914d99567b7d93 (diff)
downloadpoky-14ddbedbd2d6a877cd693c833f05df8f8acd5909.tar.gz
python3-pluggy: upgrade 1.0.0 -> 1.2.0
Changelog: ========== #405: The new-style hook wrappers, added in the yanked 1.1.0 release, now require an explicit wrapper=True designation in the @hookimpl() decorator. #364: Python 3.6 is no longer supported. #260: Added "new-style" hook wrappers, a simpler but equally powerful alternative to the existing hookwrapper=True wrappers. #364: Python 3.11 and 3.12 are now officially supported. #394: Added the :meth:`~pluggy._callers._Result.force_exception` method to _Result. (From OE-Core rev: 5e9e7c60698ebcbe4a774283bad54c6bcf675a7f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pluggy_1.2.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pluggy_1.2.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pluggy_1.2.0.bb b/meta/recipes-devtools/python/python3-pluggy_1.2.0.bb
new file mode 100644
index 0000000000..3322bb523b
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pluggy_1.2.0.bb
@@ -0,0 +1,29 @@
1SUMMARY = "Plugin and hook calling mechanisms for python"
2HOMEPAGE = "https://github.com/pytest-dev/pluggy"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=1c8206d16fd5cc02fa9b0bb98955e5c2"
5
6SRC_URI[sha256sum] = "d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3"
7
8DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
9RDEPENDS:${PN} += "${PYTHON_PN}-importlib-metadata \
10 ${PYTHON_PN}-more-itertools \
11"
12
13inherit pypi ptest python_setuptools_build_meta
14
15SRC_URI += " \
16 file://run-ptest \
17"
18
19RDEPENDS:${PN}-ptest += " \
20 ${PYTHON_PN}-pytest \
21 ${PYTHON_PN}-unittest-automake-output \
22"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/testing
26 cp -rf ${S}/testing/* ${D}${PTEST_PATH}/testing/
27}
28
29BBCLASSEXTEND = "native nativesdk"