From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2B7D158013 for ; Mon, 4 Dec 2023 18:52:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6AC92BC01A; Mon, 4 Dec 2023 18:52: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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB9422BC01A for ; Mon, 4 Dec 2023 18:52: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 C6474335CB4 for ; Mon, 4 Dec 2023 18:52:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1207EAF6 for ; Mon, 4 Dec 2023 18:52:38 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1701715948.8ba6178def1a0070df7186160145645394ca8527.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/bpytop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/bpytop/bpytop-1.0.68-r1.ebuild X-VCS-Directories: sys-process/bpytop/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 8ba6178def1a0070df7186160145645394ca8527 X-VCS-Branch: master Date: Mon, 4 Dec 2023 18:52: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: a7baa58e-9f8c-4c3f-a47e-dc10145b31ae X-Archives-Hash: d5e0eeb62ce08a0b0de2374715f78815 commit: 8ba6178def1a0070df7186160145645394ca8527 Author: Patrick McLean gentoo org> AuthorDate: Mon Dec 4 18:52:28 2023 +0000 Commit: Patrick McLean gentoo org> CommitDate: Mon Dec 4 18:52:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba6178d sys-process/bpytop: enable py3.12 Signed-off-by: Patrick McLean gentoo.org> sys-process/bpytop/bpytop-1.0.68-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sys-process/bpytop/bpytop-1.0.68-r1.ebuild b/sys-process/bpytop/bpytop-1.0.68-r1.ebuild index 3656a5c1c26a..78fa09a9c613 100644 --- a/sys-process/bpytop/bpytop-1.0.68-r1.ebuild +++ b/sys-process/bpytop/bpytop-1.0.68-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{9..12} ) inherit distutils-r1 @@ -37,3 +37,10 @@ src_install() { doins bpytop-themes/*.theme distutils-r1_src_install } + +python_test() { + EPYTEST_DESELECT=( + tests/test_functions.py::test_get_cpu_core_mapping + ) + epytest +}