From 8b4d7857452b85ba75ab93dcd04ed68ffe2ab507 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Sun, 16 Jan 2022 10:04:11 -0800 Subject: python3-hypothesis: upgrade 6.34.1 -> 6.35.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.35.0 - 2022-01-08¶ This release disallows using typing.ClassVar with from_type() and register_type_strategy(). Why? Because ClassVar can only be used during class definition. We don’t generate class attributes. It also does not make sense as a runtime type on its own. 6.34.2 - 2022-01-05¶ This patch updates our vendored list of top-level domains, which is used by the provisional domains() strategy. (From OE-Core rev: 836cec0b8096f157ae7051d34efbe637ff211617) Signed-off-by: Tim Orling Signed-off-by: Richard Purdie --- .../python/python3-hypothesis_6.35.0.bb | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-hypothesis_6.35.0.bb (limited to 'meta/recipes-devtools/python/python3-hypothesis_6.35.0.bb') diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.35.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.35.0.bb new file mode 100644 index 0000000000..246ff84f61 --- /dev/null +++ b/meta/recipes-devtools/python/python3-hypothesis_6.35.0.bb @@ -0,0 +1,38 @@ +SUMMARY = "A library for property-based testing" +HOMEPAGE = "https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python" +LICENSE = "MPL-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4ee62c16ebd0f4f99d906f36b7de8c3c" + +PYPI_PACKAGE = "hypothesis" + +inherit pypi setuptools3 ptest + +SRC_URI += " \ + file://run-ptest \ + file://test_binary_search.py \ + file://test_rle.py \ + " + +SRC_URI[sha256sum] = "ce3961fff61e7353d022608788cbc9876c293d2468749eeba27511adc9565131" + +RDEPENDS:${PN} += " \ + python3-attrs \ + python3-compression \ + python3-core \ + python3-json \ + python3-sortedcontainers \ + python3-statistics \ + python3-unittest \ + " + +RDEPENDS:${PN}-ptest += " \ + ${PYTHON_PN}-pytest \ + " + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/examples + install -m 0755 ${WORKDIR}/test_binary_search.py ${D}${PTEST_PATH}/examples/ + install -m 0755 ${WORKDIR}/test_rle.py ${D}${PTEST_PATH}/examples/ +} + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf