py-hypothesis: updated to 3.86.5
3.86.5: This is a docs-only patch, which fixes some typos and removes a few hyperlinks for deprecated features. 3.86.4: This release changes the order in which the shrinker tries to delete data. For large and slow tests this may significantly improve the performance of shrinking. 3.86.3: This release fixes a bug where certain places Hypothesis internal errors could be raised during shrinking when a user exception occurred that suppressed an exception Hypothesis uses internally in its generation. The two known ways to trigger this problem were: Errors raised in stateful tests’ teardown function. Errors raised in finally blocks that wrapped a call to data.draw. These cases will now be handled correctly. 3.86.2: This patch is a docs-only change to fix a broken hyperlink. 3.86.1: This patch fixes issue 1732, where integers() would always return long values on Python 2. 3.86.0: This release ensures that infinite numbers are never generated by floats() with allow_infinity=False, which could previously happen in some cases where one bound was also provided. The trivially inconsistent min_value=inf, allow_infinity=False now raises an InvalidArgumentError, as does the inverse with max_value. You can still use just(inf) to generate inf without violating other constraints.
This commit is contained in:
parent
b7ada6e391
commit
744451446a
3 changed files with 11 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.68 2018/12/13 07:11:49 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.69 2019/01/07 08:31:28 adam Exp $
|
||||
|
||||
DISTNAME= hypothesis-3.83.1
|
||||
DISTNAME= hypothesis-3.86.5
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.21 2018/10/03 09:56:52 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.22 2019/01/07 08:31:28 adam Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -12,6 +12,9 @@ ${PYSITELIB}/hypothesis/__init__.pyo
|
|||
${PYSITELIB}/hypothesis/_settings.py
|
||||
${PYSITELIB}/hypothesis/_settings.pyc
|
||||
${PYSITELIB}/hypothesis/_settings.pyo
|
||||
${PYSITELIB}/hypothesis/_strategies.py
|
||||
${PYSITELIB}/hypothesis/_strategies.pyc
|
||||
${PYSITELIB}/hypothesis/_strategies.pyo
|
||||
${PYSITELIB}/hypothesis/configuration.py
|
||||
${PYSITELIB}/hypothesis/configuration.pyc
|
||||
${PYSITELIB}/hypothesis/configuration.pyo
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.65 2018/12/13 07:11:49 adam Exp $
|
||||
$NetBSD: distinfo,v 1.66 2019/01/07 08:31:28 adam Exp $
|
||||
|
||||
SHA1 (hypothesis-3.83.1.tar.gz) = 368bfcf896799c694d1190ff57988882967964e7
|
||||
RMD160 (hypothesis-3.83.1.tar.gz) = d901dcfe3d3b4f8ebe597a5a3e4ea3fdd140cbee
|
||||
SHA512 (hypothesis-3.83.1.tar.gz) = 0b7a22c85c69ab459694b149efa2e33b6fd252063a1068191a3405dd90fbc159d4042f5639d3eaf5dd994f4da2685c96dd5d0d1732e3bd4814c59375b2e052b6
|
||||
Size (hypothesis-3.83.1.tar.gz) = 182591 bytes
|
||||
SHA1 (hypothesis-3.86.5.tar.gz) = 1fefde5cfb04e190dd13c2fff3c7a6f8702d7ef1
|
||||
RMD160 (hypothesis-3.86.5.tar.gz) = 55c71ef364065419de8339b695a22cc1600e6fdc
|
||||
SHA512 (hypothesis-3.86.5.tar.gz) = b22fb1da689bb23c74eb976dc51683676f01f40d9256559933a89b96c7584711faf68139cff1c5051960d16ec67ebdacb5c27e6a5bb836728c7d10a1929cc76a
|
||||
Size (hypothesis-3.86.5.tar.gz) = 186438 bytes
|
||||
|
|
Loading…
Reference in a new issue