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 988171584AD for ; Sun, 13 Apr 2025 15:28:28 +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 7F11B3430E9 for ; Sun, 13 Apr 2025 15:28:28 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BC4301104B1; Sun, 13 Apr 2025 15:28:24 +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 B395A1104B1 for ; Sun, 13 Apr 2025 15:28:24 +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 59FBC3430BD for ; Sun, 13 Apr 2025 15:28:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE7DB1688 for ; Sun, 13 Apr 2025 15:28:22 +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: <1744557930.49f27810cce4d96ee1b7a5c527d95f6ebc68d497.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scikit-learn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scikit-learn/scikit-learn-1.6.1.ebuild X-VCS-Directories: dev-python/scikit-learn/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 49f27810cce4d96ee1b7a5c527d95f6ebc68d497 X-VCS-Branch: master Date: Sun, 13 Apr 2025 15:28:22 +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: c4b3f6c9-d27f-4f9b-bccd-b055f7a22b83 X-Archives-Hash: e50aed861d2406ad9c97e4d64a7240da commit: 49f27810cce4d96ee1b7a5c527d95f6ebc68d497 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 13 15:25:30 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 13 15:25:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f27810 dev-python/scikit-learn: Deselect test failing on ppc64le Signed-off-by: Michał Górny gentoo.org> dev-python/scikit-learn/scikit-learn-1.6.1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-python/scikit-learn/scikit-learn-1.6.1.ebuild b/dev-python/scikit-learn/scikit-learn-1.6.1.ebuild index 47e44f6e6c2c..db9398d76f49 100644 --- a/dev-python/scikit-learn/scikit-learn-1.6.1.ebuild +++ b/dev-python/scikit-learn/scikit-learn-1.6.1.ebuild @@ -64,6 +64,14 @@ python_test() { cluster/_hdbscan/hdbscan.py::sklearn.cluster._hdbscan.hdbscan.HDBSCAN ) + case ${ARCH} in + ppc64) + EPYTEST_DESELECT+=( + # TODO + ensemble/_weight_boosting.py::sklearn.ensemble._weight_boosting.AdaBoostRegressor + ) + esac + rm -rf sklearn || die local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest --pyargs sklearn