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 39E3115806E for ; Sat, 27 May 2023 09:15:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E8B0E07FE; Sat, 27 May 2023 09:15:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EC885E07FE for ; Sat, 27 May 2023 09:15:45 +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 1A3F9340B9E for ; Sat, 27 May 2023 09:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7A98A75 for ; Sat, 27 May 2023 09:15:43 +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: <1685178931.76dfbd75b4d6b2fcc0c51535c7e54393c1d705e8.sam@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.24.3.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 76dfbd75b4d6b2fcc0c51535c7e54393c1d705e8 X-VCS-Branch: master Date: Sat, 27 May 2023 09:15:43 +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: faecdebf-16f1-4bff-8b9b-165a60f0e28d X-Archives-Hash: 0b414e53358cabb6f8bbbddb6e1ec182 commit: 76dfbd75b4d6b2fcc0c51535c7e54393c1d705e8 Author: Sam James gentoo org> AuthorDate: Sat May 27 09:15:23 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 27 09:15:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76dfbd75 dev-python/numpy: skip test on more 32-bit arches Bug: https://bugs.gentoo.org/907228 Bug: https://bugs.gentoo.org/328401 Signed-off-by: Sam James gentoo.org> dev-python/numpy/numpy-1.24.3.ebuild | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/dev-python/numpy/numpy-1.24.3.ebuild b/dev-python/numpy/numpy-1.24.3.ebuild index 8df287185022..c378a2de3404 100644 --- a/dev-python/numpy/numpy-1.24.3.ebuild +++ b/dev-python/numpy/numpy-1.24.3.ebuild @@ -143,12 +143,17 @@ python_test() { numpy/core/tests/test_einsum.py::TestEinsum::test_einsum_sums_int16 ) 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 + + case "${ABI}" in + alpha|arm|hppa|m68k|o32|ppc|s390|sh|sparc|x86) + EPYTEST_DESELECT+=( + # too large for 32-bit platforms + numpy/core/tests/test_ufunc.py::TestUfunc::test_identityless_reduction_huge_array + ) + ;; + *) + ;; + esac distutils_install_for_testing --single-version-externally-managed \ --record "${TMPDIR}/record.txt" ${NUMPY_FCONFIG}