diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2025-09-19 12:48:01 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-25 11:09:04 +0100 |
| commit | b5440f4b69b928ae88755c88ec367c2e9b4f0577 (patch) | |
| tree | b7e81259d30f777d304132dd8b26a1197e1cc998 /meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb | |
| parent | 48b08569a3ece0961bcca35d9282f245692f422d (diff) | |
| download | poky-b5440f4b69b928ae88755c88ec367c2e9b4f0577.tar.gz | |
python3-hypothesis: upgrade 6.138.15 -> 6.139.2
Changelog: (https://hypothesis.readthedocs.io/en/latest/changelog.html#changelog):
6.139.2:
- Internal refactoring for new lint rules.
6.139.1:
- Fixed another typo in error message around function-scoped fixtures.
6.139.0:
- Add get_current_profile_name(), which returns the name of the current settings profile.
6.138.17:
- Fixed typo in error message around function-scoped fixtures.
6.138.16:
- Improved error message for DeadlineExceeded.
Reproducibility OK.
ptests look OK:
|============================================================================
|Testsuite summary
|# TOTAL: 5
|# PASS: 5
|# SKIP: 0
|# XFAIL: 0
|# FAIL: 0
|# XPASS: 0
|# ERROR: 0
|DURATION: 1
|END: /usr/lib/python3-hypothesis/ptest
|2025-09-19T15:53
|STOP: ptest-runner
|TOTAL: 1 FAIL: 0
(From OE-Core rev: 4f7daa9268353ee7f00d5d3e90996f069ea798c4)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb b/meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb new file mode 100644 index 0000000000..b03cc22fac --- /dev/null +++ b/meta/recipes-devtools/python/python3-hypothesis_6.139.2.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 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 | PTEST_PYTEST_DIR ?= "examples" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta ptest-python-pytest | ||
| 10 | |||
| 11 | SRC_URI += " \ | ||
| 12 | file://test_binary_search.py \ | ||
| 13 | file://test_rle.py \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI[sha256sum] = "2dc2ff36ea977a9cb7fb68f24a5dbf5d673b88a2e502212676eafe09b699f511" | ||
| 17 | |||
| 18 | RDEPENDS:${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 | python3-zoneinfo \ | ||
| 28 | " | ||
| 29 | |||
| 30 | do_install_ptest:append() { | ||
| 31 | install -d ${D}${PTEST_PATH}/${PTEST_PYTEST_DIR} | ||
| 32 | install -m 0755 ${UNPACKDIR}/test_binary_search.py ${D}${PTEST_PATH}/${PTEST_PYTEST_DIR}/ | ||
| 33 | install -m 0755 ${UNPACKDIR}/test_rle.py ${D}${PTEST_PATH}/${PTEST_PYTEST_DIR}/ | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND = "native nativesdk" | ||
