summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2024-08-09 08:22:17 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-08-13 09:29:15 +0100
commit71b650ecf40807e953f7b1db38862510befb8777 (patch)
tree277e7a1f6ebb4fda51025cee2821d2dc449b0650 /meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
parent0aac243aecfab95d9d5b59ffaff414cdef726cbb (diff)
downloadpoky-71b650ecf40807e953f7b1db38862510befb8777.tar.gz
python3-hypothesis: upgrade 6.108.10 -> 6.110.1
Changelog (https://hypothesis.readthedocs.io/en/latest/changes.html): 6.110.1 - 2024-08-08 - Add better error message for ~python:typing.TypeIs types in from_type(). 6.110.0 - 2024-08-07 - Support LiteralString in from_type(). 6.109.1 - 2024-08-07 - This patch makes progress towards adding type hints to our internal conjecture engine (issue #3074). 6.109.0 - 2024-08-07 - This release allows using Annotated and ReadOnly types for TypedDict value types with from_type(). (From OE-Core rev: 20432c7463ff6daab3ea8fc8ceea9c6e7916209c) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb b/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
new file mode 100644
index 0000000000..29fe7e18a2
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
@@ -0,0 +1,39 @@
1SUMMARY = "A library for property-based testing"
2HOMEPAGE = "https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python"
3LICENSE = "MPL-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4ee62c16ebd0f4f99d906f36b7de8c3c"
5
6PYPI_PACKAGE = "hypothesis"
7
8inherit pypi setuptools3 ptest
9
10SRC_URI += " \
11 file://run-ptest \
12 file://test_binary_search.py \
13 file://test_rle.py \
14 "
15
16SRC_URI[sha256sum] = "a138bfaea11aba6daadf8effd9065251a6fec1549f25b7d72ac9881a413f76b0"
17
18RDEPENDS:${PN} += " \
19 python3-attrs \
20 python3-compression \
21 python3-core \
22 python3-json \
23 python3-pytest \
24 python3-sortedcontainers \
25 python3-statistics \
26 python3-unittest \
27 "
28
29RDEPENDS:${PN}-ptest += " \
30 python3-unittest-automake-output \
31 "
32
33do_install_ptest() {
34 install -d ${D}${PTEST_PATH}/examples
35 install -m 0755 ${UNPACKDIR}/test_binary_search.py ${D}${PTEST_PATH}/examples/
36 install -m 0755 ${UNPACKDIR}/test_rle.py ${D}${PTEST_PATH}/examples/
37}
38
39BBCLASSEXTEND = "native nativesdk"