Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id DCE231A923B for ; Mon, 25 Jan 2021 10:19:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E521F850BE; Mon, 25 Jan 2021 10:18:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5692D850BE for ; Mon, 25 Jan 2021 10:08:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ATHUc05Aks-w for ; Mon, 25 Jan 2021 10:08:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4979C84C71 for ; Mon, 25 Jan 2021 10:08:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 435D0FA9D; Mon, 25 Jan 2021 10:08:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161156933828790" MIME-Version: 1.0 Date: Mon, 25 Jan 2021 10:08:58 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-hypothesis To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210125100858.435D0FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161156933828790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 25 10:08:58 UTC 2021 Modified Files: pkgsrc/devel/py-hypothesis: Makefile distinfo Log Message: py-hypothesis: update to 6.0.3. 6.0.3 - 2021-01-23 This patch improves the type annotations for one_of(), by adding overloads to handle up to five distinct arguments as typing.Union before falling back to typing.Any, as well as annotating the | (__or__) operator for strategies (issue #2765). 6.0.2 - 2021-01-14 This release makes some small improvements to how filtered strategies work. It should improve the performance of shrinking filtered strategies, and may under some (probably rare) circumstances improve the diversity of generated examples. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/devel/py-hypothesis/Makefile cvs rdiff -u -r1.90 -r1.91 pkgsrc/devel/py-hypothesis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161156933828790 Content-Disposition: inline Content-Length: 1790 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hypothesis/Makefile diff -u pkgsrc/devel/py-hypothesis/Makefile:1.93 pkgsrc/devel/py-hypothesis/Makefile:1.94 --- pkgsrc/devel/py-hypothesis/Makefile:1.93 Wed Jan 13 11:50:46 2021 +++ pkgsrc/devel/py-hypothesis/Makefile Mon Jan 25 10:08:58 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.93 2021/01/13 11:50:46 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2021/01/25 10:08:58 wiz Exp $ # # Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html -DISTNAME= hypothesis-6.0.1 +DISTNAME= hypothesis-6.0.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/} Index: pkgsrc/devel/py-hypothesis/distinfo diff -u pkgsrc/devel/py-hypothesis/distinfo:1.90 pkgsrc/devel/py-hypothesis/distinfo:1.91 --- pkgsrc/devel/py-hypothesis/distinfo:1.90 Wed Jan 13 11:50:46 2021 +++ pkgsrc/devel/py-hypothesis/distinfo Mon Jan 25 10:08:58 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.90 2021/01/13 11:50:46 wiz Exp $ +$NetBSD: distinfo,v 1.91 2021/01/25 10:08:58 wiz Exp $ -SHA1 (hypothesis-6.0.1.tar.gz) = 20d603c6466b3be1a9d95d5fb0687f1b557f58b7 -RMD160 (hypothesis-6.0.1.tar.gz) = 0ddecc68c596b38e92a07ce4cf844fed6a574f3e -SHA512 (hypothesis-6.0.1.tar.gz) = a760288b985ea17f6d9627848ac95be84f16304743a32e90c6774ef4798bde78c6dad780df6fa71f0c8ccac5f7db0dccef302554e197957137289de19fa44c25 -Size (hypothesis-6.0.1.tar.gz) = 288140 bytes +SHA1 (hypothesis-6.0.3.tar.gz) = 75f848364889efc7f8bb70650a04398c0af22f84 +RMD160 (hypothesis-6.0.3.tar.gz) = 6555637bace75a0ec838d48d2dce1ac0483d4f78 +SHA512 (hypothesis-6.0.3.tar.gz) = 5f4a065d78b17119b9eef8e81516d24e51087a9fa85307284457268bff51cc2f9c8fb33fd6b48f291159eee6eb7a474b70cf7f0e96c289f73e4f07aa24dbc8ca +Size (hypothesis-6.0.3.tar.gz) = 288291 bytes --_----------=_161156933828790--