diff options
| author | Tim Orling <ticotimo@gmail.com> | 2021-08-21 20:39:40 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-22 22:21:47 +0100 |
| commit | 34f595c6b41de9c4be8b3fc73d5ee0a3e89f627c (patch) | |
| tree | 43bc2905266ea44a01a525356e0ec33c97f75d62 /meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb | |
| parent | 15eeb6d96096659aae0f8a5e7c4fbdb704886fa9 (diff) | |
| download | poky-34f595c6b41de9c4be8b3fc73d5ee0a3e89f627c.tar.gz | |
python3-hypothesis: upgrade 6.14.8 -> 6.15.0
6.15.0 - 2021-08-22
This release emits a more useful error message when @given() is applied to
a coroutine function, i.e. one defined using async def (issue #3054).
This was previously only handled by the generic return_value health check,
which doesn’t direct you to use either a custom executor or a library such
as pytest-trio or pytest-asyncio to handle it for you.
6.14.9 - 2021-08-20
This patch fixes a regression in Hypothesis 6.14.8, where from_type() failed
to resolve types which inherit from multiple parametrised generic types,
affecting the returns package (issue #3060).
References:
https://github.com/HypothesisWorks/hypothesis/issues/3054
https://github.com/HypothesisWorks/hypothesis/issues/3060
(From OE-Core rev: ca0039a6e5524ab1e74df285ce16460dc980da65)
Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb new file mode 100644 index 0000000000..9f0b7eaf3d --- /dev/null +++ b/meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "A library for property-based testing" | ||
| 2 | HOMEPAGE = "https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python" | ||
| 3 | LICENSE = "MPL-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4ee62c16ebd0f4f99d906f36b7de8c3c" | ||
| 5 | |||
| 6 | PYPI_PACKAGE = "hypothesis" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | SRC_URI[sha256sum] = "10699f595eebb9410fd902908aa13aece19be5c437b405092be34f60f69f7999" | ||
| 11 | |||
| 12 | RDEPENDS:${PN} += " \ | ||
| 13 | python3-attrs \ | ||
| 14 | python3-compression \ | ||
| 15 | python3-core \ | ||
| 16 | python3-json \ | ||
| 17 | python3-sortedcontainers \ | ||
| 18 | python3-statistics \ | ||
| 19 | python3-unittest \ | ||
| 20 | " | ||
| 21 | |||
| 22 | BBCLASSEXTEND = "native nativesdk" | ||
