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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2285E1581F0 for ; Sat, 14 Dec 2024 10:52:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 617ADE08F0; Sat, 14 Dec 2024 10:52:30 +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 pigeon.gentoo.org (Postfix) with ESMTPS id D0EFBE08E8 for ; Sat, 14 Dec 2024 10:52:29 +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 E7F87340DE6 for ; Sat, 14 Dec 2024 10:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F12C1F41 for ; Sat, 14 Dec 2024 10:52:27 +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: <1734173543.7e75877a97132375a37621e7dd255af995ecaecd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scipy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scipy/scipy-1.15.0_rc1.ebuild X-VCS-Directories: dev-python/scipy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7e75877a97132375a37621e7dd255af995ecaecd X-VCS-Branch: master Date: Sat, 14 Dec 2024 10:52:27 +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: 0e59ba78-a223-44cd-b7c2-f2985422ee5a X-Archives-Hash: 3a6758e89147b9a5fe021a0c05243e7d commit: 7e75877a97132375a37621e7dd255af995ecaecd Author: Michał Górny gentoo org> AuthorDate: Sat Dec 14 10:32:02 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 14 10:52:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e75877a dev-python/scipy: Try forcing internal multithreading off Signed-off-by: Michał Górny gentoo.org> dev-python/scipy/scipy-1.15.0_rc1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/scipy/scipy-1.15.0_rc1.ebuild b/dev-python/scipy/scipy-1.15.0_rc1.ebuild index 170355959af4..e2f6d629ee17 100644 --- a/dev-python/scipy/scipy-1.15.0_rc1.ebuild +++ b/dev-python/scipy/scipy-1.15.0_rc1.ebuild @@ -151,6 +151,8 @@ python_test() { esac local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + # avoid other stuff being multithreaded when using xdist + local -x PYTHON_CPU_COUNT=1 epytest scipy }