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 AA81D1582EF for ; Sun, 16 Feb 2025 16:02:46 +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 96DAF34316D for ; Sun, 16 Feb 2025 16:02:46 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 7369411047A; Sun, 16 Feb 2025 16:02:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6A98F11047A for ; Sun, 16 Feb 2025 16:02:27 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25BCF343146 for ; Sun, 16 Feb 2025 16:02:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B9F82762 for ; Sun, 16 Feb 2025 16:02:24 +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: <1739721739.8b5498809ed701ec09223945dd601af0c0c26dac.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rich/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rich/rich-13.9.4.ebuild X-VCS-Directories: dev-python/rich/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8b5498809ed701ec09223945dd601af0c0c26dac X-VCS-Branch: master Date: Sun, 16 Feb 2025 16:02:24 +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: ec0489d6-1215-4786-9fd5-03de7dcb4690 X-Archives-Hash: cde8969a2fd1158edf3a9ca1df589011 commit: 8b5498809ed701ec09223945dd601af0c0c26dac Author: Michał Górny gentoo org> AuthorDate: Sun Feb 16 15:14:27 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 16 16:02:19 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b549880 dev-python/rich: Enable pypy3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/rich/rich-13.9.4.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/rich/rich-13.9.4.ebuild b/dev-python/rich/rich-13.9.4.ebuild index 6013812a8698..3fb0c38348f8 100644 --- a/dev-python/rich/rich-13.9.4.ebuild +++ b/dev-python/rich/rich-13.9.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{10..13} pypy3 ) +PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 ) inherit distutils-r1 optfeature @@ -57,6 +57,11 @@ python_test() { tests/test_inspect.py::test_inspect_integer_with_methods_python310only ) ;; + pypy3.11) + EPYTEST_DESELECT+=( + tests/test_inspect.py::test_inspect_integer_with_methods_python311 + ) + ;; esac local -x COLUMNS=80