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 869EC1580EB for ; Wed, 28 May 2025 16:48:05 +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 6E10B3431B8 for ; Wed, 28 May 2025 16:48:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 53D8511047E; Wed, 28 May 2025 16:48:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4DAFF11047E for ; Wed, 28 May 2025 16:48:00 +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 0368434316D for ; Wed, 28 May 2025 16:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A49E28EA for ; Wed, 28 May 2025 16:47:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1748450844.fb6986a7066f72f6f12b0cdc10f201681a80f27e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygraphviz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygraphviz/pygraphviz-1.14.ebuild X-VCS-Directories: dev-python/pygraphviz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fb6986a7066f72f6f12b0cdc10f201681a80f27e X-VCS-Branch: master Date: Wed, 28 May 2025 16:47:58 +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: 5466d6cc-f428-4a40-87fd-a3725ffa4905 X-Archives-Hash: 7a6c1d90e83ffe542d4451b2055200f8 commit: fb6986a7066f72f6f12b0cdc10f201681a80f27e Author: Sam James gentoo org> AuthorDate: Wed May 28 16:39:42 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 28 16:47:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb6986a7 dev-python/pygraphviz: enable py3.14, fix test collection I've had to use a hack for test collection (Fedora seems to do the same) as nothing was being collected for me. Signed-off-by: Sam James gentoo.org> dev-python/pygraphviz/pygraphviz-1.14.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pygraphviz/pygraphviz-1.14.ebuild b/dev-python/pygraphviz/pygraphviz-1.14.ebuild index 20bed0d0ef2c..4410a6aea5d2 100644 --- a/dev-python/pygraphviz/pygraphviz-1.14.ebuild +++ b/dev-python/pygraphviz/pygraphviz-1.14.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_COMPAT=( python3_{11..14} ) inherit distutils-r1 pypi @@ -39,7 +39,7 @@ src_configure() { python_test() { cd "${BUILD_DIR}"/install || die - epytest + epytest ./$(python_get_sitedir)/pygraphviz/tests } python_install_all() {