From fdfd6c0f904fd75c06ce60f73fd96e6950356eb1 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Wed, 18 Aug 2021 22:18:25 -0700 Subject: python3-hypothesis: upgrade 6.14.5 -> 6.14.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.14.8 - 2021-08-16 This patch ensures that registering a strategy for a subclass of a parametrised generic type such as class Lines(Sequence[str]): will not “leak” into unrelated strategies such as st.from_type(Sequence[int]) (issue #2951). Unfortunately this fix requires PEP 560, meaning Python 3.7 or later. 6.14.7 - 2021-08-14 This patch fixes issue #3050, where attrs classes could cause an internal error in the ghostwriter. 6.14.6 - 2021-08-07 This patch improves the error message for issue #3016, where PEP 585 builtin generics with self-referential forward-reference strings cannot be resolved to a strategy by from_type(). References: https://github.com/HypothesisWorks/hypothesis/issues/2951 https://www.python.org/dev/peps/pep-0560 https://github.com/HypothesisWorks/hypothesis/issues/3050 https://www.python.org/dev/peps/pep-0585 (From OE-Core rev: 1f2276c6d0312854caacebe1c83dee57474f1bb2) Signed-off-by: Tim Orling Signed-off-by: Richard Purdie --- .../python/python3-hypothesis_6.14.5.bb | 22 ---------------------- .../python/python3-hypothesis_6.14.8.bb | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 22 deletions(-) delete mode 100644 meta/recipes-devtools/python/python3-hypothesis_6.14.5.bb create mode 100644 meta/recipes-devtools/python/python3-hypothesis_6.14.8.bb (limited to 'meta/recipes-devtools/python') diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.14.5.bb b/meta/recipes-devtools/python/python3-hypothesis_6.14.5.bb deleted file mode 100644 index 0460a43198..0000000000 --- a/meta/recipes-devtools/python/python3-hypothesis_6.14.5.bb +++ /dev/null @@ -1,22 +0,0 @@ -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 - -SRC_URI[sha256sum] = "0563b9711fd9bf478cb591580a575c369d2c396f283efa85d0f9a75b26db65b5" - -RDEPENDS:${PN} += " \ - python3-attrs \ - python3-compression \ - python3-core \ - python3-json \ - python3-sortedcontainers \ - python3-statistics \ - python3-unittest \ - " - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.14.8.bb b/meta/recipes-devtools/python/python3-hypothesis_6.14.8.bb new file mode 100644 index 0000000000..bc29b94a54 --- /dev/null +++ b/meta/recipes-devtools/python/python3-hypothesis_6.14.8.bb @@ -0,0 +1,22 @@ +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 + +SRC_URI[sha256sum] = "cb80e06ca44992b08d2889734b740e67c8b41337315bbd6dba2ef43ca816cfe3" + +RDEPENDS:${PN} += " \ + python3-attrs \ + python3-compression \ + python3-core \ + python3-json \ + python3-sortedcontainers \ + python3-statistics \ + python3-unittest \ + " + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf