Received: by mail.netbsd.org (Postfix, from userid 605) id 1895B84D96; Fri, 21 Oct 2022 12:29:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4B69384D82 for ; Fri, 21 Oct 2022 12:29:33 +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 643Yjf2R3JGS for ; Fri, 21 Oct 2022 12:29:32 +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 B922B84CD8 for ; Fri, 21 Oct 2022 12:29:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B6C7AFA90; Fri, 21 Oct 2022 12:29:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1666355372225030" MIME-Version: 1.0 Date: Fri, 21 Oct 2022 12:29:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-respx To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221021122932.B6C7AFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1666355372225030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Oct 21 12:29:32 UTC 2022 Modified Files: pkgsrc/www/py-respx: Makefile distinfo Log Message: py-respx: updated to 0.20.0 0.20.0 Changed - Type Router.__getitem__ to not return optional routes - Change `Call.response` to raise instead of returning optional response - Change `CallList.last` to raise instead of return optional call - Type `M()` to not return optional pattern, by introducing a `Noop` pattern - Type `Route.pattern` to not be optional Fixed - Correct type hints for side effects Added - Runs `mypy` on both tests and respx - Added nox test session for python 3.11 - Added `Call.has_response` helper, now that `.response` raises To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/py-respx/Makefile \ pkgsrc/www/py-respx/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1666355372225030 Content-Disposition: inline Content-Length: 1508 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-respx/Makefile diff -u pkgsrc/www/py-respx/Makefile:1.11 pkgsrc/www/py-respx/Makefile:1.12 --- pkgsrc/www/py-respx/Makefile:1.11 Sun Feb 6 07:53:10 2022 +++ pkgsrc/www/py-respx/Makefile Fri Oct 21 12:29:32 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2022/02/06 07:53:10 adam Exp $ +# $NetBSD: Makefile,v 1.12 2022/10/21 12:29:32 adam Exp $ -DISTNAME= respx-0.19.2 +DISTNAME= respx-0.20.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=r/respx/} Index: pkgsrc/www/py-respx/distinfo diff -u pkgsrc/www/py-respx/distinfo:1.11 pkgsrc/www/py-respx/distinfo:1.12 --- pkgsrc/www/py-respx/distinfo:1.11 Sun Feb 6 07:53:10 2022 +++ pkgsrc/www/py-respx/distinfo Fri Oct 21 12:29:32 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2022/02/06 07:53:10 adam Exp $ +$NetBSD: distinfo,v 1.12 2022/10/21 12:29:32 adam Exp $ -BLAKE2s (respx-0.19.2.tar.gz) = d62b36d6d8a7302195da604ed3de8b9cd51015dae7c6037ca7f1d0d42bd6a3bd -SHA512 (respx-0.19.2.tar.gz) = 82d4c93f7af1d9563e1b313dbe04cb9a83b6882cf28b01bc224176f06b8cc74775f9fd52bcc7ca4db3ee925e71bac9c5b744fde7bbbcce97e8d13d9695ab9e06 -Size (respx-0.19.2.tar.gz) = 24437 bytes +BLAKE2s (respx-0.20.0.tar.gz) = 6e91b82f4a05fabae0688e895c9851c8165fb6cd780ee370bd80404e97cce9cb +SHA512 (respx-0.20.0.tar.gz) = c7af0d1d82dc420ddfa777de00d62a87c5c8a1921d198f41b380a4bf6d0e854102b077ff0c6139c277b1700550ca97f4e088610361d0bd65308db43c725df7a5 +Size (respx-0.20.0.tar.gz) = 25087 bytes --_----------=_1666355372225030--