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 6B13D158090 for ; Fri, 20 May 2022 09:13:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78B79E0907; Fri, 20 May 2022 09:13:20 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58A06E0907 for ; Fri, 20 May 2022 09:13:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8F98B3414CB for ; Fri, 20 May 2022 09:13:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97A8146A for ; Fri, 20 May 2022 09:13:17 +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: <1653037980.8e817c0441b57fbaaf43be6c6032729a87ebfd5f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpy/numpy-1.22.3.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8e817c0441b57fbaaf43be6c6032729a87ebfd5f X-VCS-Branch: master Date: Fri, 20 May 2022 09:13:17 +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: f331cfa5-3c1f-40cf-aeaa-21d1704d49e6 X-Archives-Hash: 95e40ebbe9290d7d279d18cefb9d9a20 commit: 8e817c0441b57fbaaf43be6c6032729a87ebfd5f Author: Michał Górny gentoo org> AuthorDate: Fri May 20 08:53:08 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 20 09:13:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e817c04 dev-python/numpy: Skip test_identityless_reduction_huge_array on arm Closes: https://bugs.gentoo.org/846548 Signed-off-by: Michał Górny gentoo.org> dev-python/numpy/numpy-1.22.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/numpy/numpy-1.22.3.ebuild b/dev-python/numpy/numpy-1.22.3.ebuild index 50089a576034..ed6b38f7da67 100644 --- a/dev-python/numpy/numpy-1.22.3.ebuild +++ b/dev-python/numpy/numpy-1.22.3.ebuild @@ -143,7 +143,11 @@ python_test() { numpy/random/tests/test_generator_mt19937.py::TestRandomDist::test_pareto # more precision problems numpy/core/tests/test_einsum.py::TestEinsum::test_einsum_sums_int16 - # too large for the tiny x86 world + ) + fi + if use arm || use x86 ; then + EPYTEST_DESELECT+=( + # too large for 32-bit platforms numpy/core/tests/test_ufunc.py::TestUfunc::test_identityless_reduction_huge_array ) fi