From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F9E31582EF for ; Sun, 16 Feb 2025 19:07:41 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2809D342FE4 for ; Sun, 16 Feb 2025 19:07:41 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 2A91F1102CD; Sun, 16 Feb 2025 19:07:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1E5191102CD for ; Sun, 16 Feb 2025 19:07:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1653342FE4 for ; Sun, 16 Feb 2025 19:07:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D2B02637 for ; Sun, 16 Feb 2025 19:07:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1739732816.c1ae1fccd1c767734d4c18e614a2e4f176381916.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/exceptiongroup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild X-VCS-Directories: dev-python/exceptiongroup/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c1ae1fccd1c767734d4c18e614a2e4f176381916 X-VCS-Branch: master Date: Sun, 16 Feb 2025 19:07:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6eb9e3f5-89e6-498c-bdb2-9ad25db8fbec X-Archives-Hash: 3657109b56fa644ff6b209d3b8579097 commit: c1ae1fccd1c767734d4c18e614a2e4f176381916 Author: Michał Górny gentoo org> AuthorDate: Sun Feb 16 19:06:29 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 16 19:06:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1ae1fcc dev-python/exceptiongroup: Add deselects for pypy3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild b/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild index 4eef0bdb88f0..6c4d0bca4306 100644 --- a/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild +++ b/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild @@ -21,6 +21,19 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 distutils_enable_tests pytest python_test() { + local EPYTEST_DESELECT=() + + case ${EPYTHON} in + pypy3.11) + # exception message mismatch + # https://github.com/agronholm/exceptiongroup/issues/141 + EPYTEST_DESELECT+=( + tests/test_exceptions.py::BadConstructorArgs::test_bad_EG_construction__too_few_args + tests/test_exceptions.py::BadConstructorArgs::test_bad_EG_construction__too_many_args + ) + ;; + esac + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest }