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 9C3C815823F for ; Sat, 18 Nov 2023 20:13:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 729462BC01B; Sat, 18 Nov 2023 20:13:14 +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 4C6242BC01B for ; Sat, 18 Nov 2023 20:13:14 +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 399DB335CF4 for ; Sat, 18 Nov 2023 20:13:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7331713A0 for ; Sat, 18 Nov 2023 20:13:11 +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: <1700338388.a17f08f85de320e70bd153c2e29fcb3c24044f5d.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.11.3-r1.ebuild X-VCS-Directories: dev-python/scipy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a17f08f85de320e70bd153c2e29fcb3c24044f5d X-VCS-Branch: master Date: Sat, 18 Nov 2023 20:13:11 +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: 27a5d09b-260f-4670-bf2a-1cec96aff9d9 X-Archives-Hash: 9b1ab3cf95486e54c337de1f06a768b9 commit: a17f08f85de320e70bd153c2e29fcb3c24044f5d Author: Michał Górny gentoo org> AuthorDate: Sat Nov 18 18:40:25 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 18 20:13:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17f08f8 dev-python/scipy: Enable pypy3 Sponsored-by: Ex Makhina, Inc. exmakhina.com> Signed-off-by: Michał Górny gentoo.org> dev-python/scipy/scipy-1.11.3-r1.ebuild | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/dev-python/scipy/scipy-1.11.3-r1.ebuild b/dev-python/scipy/scipy-1.11.3-r1.ebuild index b64d27908ea9..7abc66ad2ceb 100644 --- a/dev-python/scipy/scipy-1.11.3-r1.ebuild +++ b/dev-python/scipy/scipy-1.11.3-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 FORTRAN_NEEDED=fortran DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=meson-python -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( pypy3 python3_{10..12} ) PYTHON_REQ_USE="threads(+)" inherit fortran-2 distutils-r1 multiprocessing @@ -119,6 +119,22 @@ python_test() { ) fi + case ${EPYTHON} in + pypy3) + EPYTEST_DESELECT+=( + # TODO: fd leaks? + scipy/fft/_pocketfft/tests/test_real_transforms.py + # timeouts + scipy/sparse/linalg/tests/test_propack.py::test_examples + # hang or incredibly slow + scipy/optimize/tests/test_lsq_linear.py::TestBVLS::test_large_rank_deficient + scipy/optimize/tests/test_lsq_linear.py::TestTRF::test_large_rank_deficient + # TODO + 'scipy/special/tests/test_data.py::test_boost[]' + ) + ;; + esac + epytest -n "$(makeopts_jobs)" --dist=worksteal scipy }