Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8B00684F28 for ; Wed, 4 Oct 2023 20:41:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id JSSRFBkEmrO3 for ; Wed, 4 Oct 2023 20:40:59 +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 DB26984D59 for ; Wed, 4 Oct 2023 20:40:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D28FEFBDB; Wed, 4 Oct 2023 20:40:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169645205976460" MIME-Version: 1.0 Date: Wed, 4 Oct 2023 20:40:59 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-hypothesis To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231004204059.D28FEFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169645205976460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Oct 4 20:40:59 UTC 2023 Modified Files: pkgsrc/devel/py-hypothesis: Makefile PLIST distinfo Log Message: py-hypothesis: updated to 6.87.1 6.87.1 Fixes issue 3755, where an internal condition turns out to be reachable after all. 6.87.0 This release deprecates use of assume() and reject() outside of property-based tests, because these functions work by raising a special exception (issue 3743). It also fixes some type annotations To generate a diff of this commit: cvs rdiff -u -r1.127 -r1.128 pkgsrc/devel/py-hypothesis/Makefile cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/py-hypothesis/PLIST cvs rdiff -u -r1.123 -r1.124 pkgsrc/devel/py-hypothesis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169645205976460 Content-Disposition: inline Content-Length: 3493 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.127 pkgsrc/devel/py-hypothesis/Makefile:1.128 --- pkgsrc/devel/py-hypothesis/Makefile:1.127 Mon Sep 18 05:56:32 2023 +++ pkgsrc/devel/py-hypothesis/Makefile Wed Oct 4 20:40:59 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.127 2023/09/18 05:56:32 adam Exp $ +# $NetBSD: Makefile,v 1.128 2023/10/04 20:40:59 adam Exp $ # # Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html -DISTNAME= hypothesis-6.86.1 +DISTNAME= hypothesis-6.87.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/} Index: pkgsrc/devel/py-hypothesis/PLIST diff -u pkgsrc/devel/py-hypothesis/PLIST:1.39 pkgsrc/devel/py-hypothesis/PLIST:1.40 --- pkgsrc/devel/py-hypothesis/PLIST:1.39 Sun May 7 08:35:49 2023 +++ pkgsrc/devel/py-hypothesis/PLIST Wed Oct 4 20:40:59 2023 @@ -1,11 +1,5 @@ -@comment $NetBSD: PLIST,v 1.39 2023/05/07 08:35:49 wiz Exp $ +@comment $NetBSD: PLIST,v 1.40 2023/10/04 20:40:59 adam Exp $ bin/hypothesis-${PYVERSSUFFIX} -${PYSITELIB}/_hypothesis_ftz_detector.py -${PYSITELIB}/_hypothesis_ftz_detector.pyc -${PYSITELIB}/_hypothesis_ftz_detector.pyo -${PYSITELIB}/_hypothesis_pytestplugin.py -${PYSITELIB}/_hypothesis_pytestplugin.pyc -${PYSITELIB}/_hypothesis_pytestplugin.pyo ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -13,6 +7,12 @@ ${PYSITELIB}/${EGG_INFODIR}/entry_points ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/_hypothesis_ftz_detector.py +${PYSITELIB}/_hypothesis_ftz_detector.pyc +${PYSITELIB}/_hypothesis_ftz_detector.pyo +${PYSITELIB}/_hypothesis_pytestplugin.py +${PYSITELIB}/_hypothesis_pytestplugin.pyc +${PYSITELIB}/_hypothesis_pytestplugin.pyo ${PYSITELIB}/hypothesis/__init__.py ${PYSITELIB}/hypothesis/__init__.pyc ${PYSITELIB}/hypothesis/__init__.pyo @@ -40,9 +40,6 @@ ${PYSITELIB}/hypothesis/entry_points.pyo ${PYSITELIB}/hypothesis/errors.py ${PYSITELIB}/hypothesis/errors.pyc ${PYSITELIB}/hypothesis/errors.pyo -${PYSITELIB}/hypothesis/executors.py -${PYSITELIB}/hypothesis/executors.pyc -${PYSITELIB}/hypothesis/executors.pyo ${PYSITELIB}/hypothesis/extra/__init__.py ${PYSITELIB}/hypothesis/extra/__init__.pyc ${PYSITELIB}/hypothesis/extra/__init__.pyo Index: pkgsrc/devel/py-hypothesis/distinfo diff -u pkgsrc/devel/py-hypothesis/distinfo:1.123 pkgsrc/devel/py-hypothesis/distinfo:1.124 --- pkgsrc/devel/py-hypothesis/distinfo:1.123 Mon Sep 18 05:56:32 2023 +++ pkgsrc/devel/py-hypothesis/distinfo Wed Oct 4 20:40:59 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.123 2023/09/18 05:56:32 adam Exp $ +$NetBSD: distinfo,v 1.124 2023/10/04 20:40:59 adam Exp $ -BLAKE2s (hypothesis-6.86.1.tar.gz) = 5da3cddb9377a0b70e6e853773475b2b60e5bfdc8dce89b280387493f538dd40 -SHA512 (hypothesis-6.86.1.tar.gz) = e78cd140c7c1e678ab8f5a796e0e4b71575b8267116aa41f6724bb749c7fefcabcb7b581a6d2ef3b68dbedf92d0f91a34f1dd369453fe2b858c32290aeef5f92 -Size (hypothesis-6.86.1.tar.gz) = 359742 bytes +BLAKE2s (hypothesis-6.87.1.tar.gz) = 7a01572004a44639f2f705ca0e08d72c579e9b12a51d7161043581e8c7ae6a8c +SHA512 (hypothesis-6.87.1.tar.gz) = 1ae36616fcefe1c3d2c9c5e2d2d8be93ce00d55ad2dafb58c7cd881a991cb844aa428c518c9c630197490dc292796bc4156b76a7324a5b02101fa5aac035e174 +Size (hypothesis-6.87.1.tar.gz) = 359514 bytes --_----------=_169645205976460--