From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1568509-garchives=archives.gentoo.org@lists.gentoo.org> 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 6306C158089 for <garchives@archives.gentoo.org>; Tue, 7 Nov 2023 05:29:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D2D02BC01D; Tue, 7 Nov 2023 05:29:23 +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 7507F2BC01D for <gentoo-commits@lists.gentoo.org>; Tue, 7 Nov 2023 05:29:23 +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 6F014335CEA for <gentoo-commits@lists.gentoo.org>; Tue, 7 Nov 2023 05:29:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62793132C for <gentoo-commits@lists.gentoo.org>; Tue, 7 Nov 2023 05:29:19 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1699334949.3c8764c65c1a5c5b08fbce1deec73b6048cb3f72.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.26.1.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3c8764c65c1a5c5b08fbce1deec73b6048cb3f72 X-VCS-Branch: master Date: Tue, 7 Nov 2023 05:29:19 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88a1b3cf-89bc-4845-b70b-f8b10bdd31e8 X-Archives-Hash: b7690a1de4a6625f1024623374d042f3 commit: 3c8764c65c1a5c5b08fbce1deec73b6048cb3f72 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Nov 3 19:24:45 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Nov 7 05:29:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c8764c6 dev-python/numpy: Switch to EPYTEST_XDIST Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/33667 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/numpy/numpy-1.26.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/numpy/numpy-1.26.1.ebuild b/dev-python/numpy/numpy-1.26.1.ebuild index 3255d05e2c00..955652eea0d8 100644 --- a/dev-python/numpy/numpy-1.26.1.ebuild +++ b/dev-python/numpy/numpy-1.26.1.ebuild @@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{10..12} pypy3 ) PYTHON_REQ_USE="threads(+)" FORTRAN_NEEDED=lapack -inherit distutils-r1 flag-o-matic fortran-2 multiprocessing pypi toolchain-funcs +inherit distutils-r1 flag-o-matic fortran-2 pypi toolchain-funcs DESCRIPTION="Fast array and numerical python library" HOMEPAGE=" @@ -46,11 +46,11 @@ BDEPEND=" ' 'python*') dev-python/charset-normalizer[${PYTHON_USEDEP}] >=dev-python/hypothesis-5.8.0[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] >=dev-python/pytz-2019.3[${PYTHON_USEDEP}] ) " +EPYTEST_XDIST=1 distutils_enable_tests pytest python_prepare_all() { @@ -143,7 +143,7 @@ python_test() { esac rm -rf numpy || die - epytest -n "$(makeopts_jobs)" --pyargs numpy + epytest --pyargs numpy } python_install_all() {