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 9E213158099 for ; Wed, 22 Nov 2023 15:25:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A97EA2BC014; Wed, 22 Nov 2023 15:25:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87F642BC014 for ; Wed, 22 Nov 2023 15:25:19 +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 A3269335DAE for ; Wed, 22 Nov 2023 15:25:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38D6913B3 for ; Wed, 22 Nov 2023 15:25:17 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1700666695.3cd9b6b063057fd978cffa8408a6e2e0d9271bd3.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pylint/pylint-3.0.2.ebuild X-VCS-Directories: dev-python/pylint/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 3cd9b6b063057fd978cffa8408a6e2e0d9271bd3 X-VCS-Branch: master Date: Wed, 22 Nov 2023 15:25: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: 4504ff63-fa5b-44e1-ae39-ce7fff57255f X-Archives-Hash: 4d27e58e12e43bd4c54dcd3666791104 commit: 3cd9b6b063057fd978cffa8408a6e2e0d9271bd3 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Nov 22 15:09:16 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Nov 22 15:24:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd9b6b0 dev-python/pylint: enable pypy3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/pylint/pylint-3.0.2.ebuild | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/dev-python/pylint/pylint-3.0.2.ebuild b/dev-python/pylint/pylint-3.0.2.ebuild index 9f66ca157073..45c911979549 100644 --- a/dev-python/pylint/pylint-3.0.2.ebuild +++ b/dev-python/pylint/pylint-3.0.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..12} pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 @@ -44,7 +44,9 @@ RDEPEND=" " BDEPEND=" test? ( - >=dev-python/GitPython-3[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/GitPython-3[${PYTHON_USEDEP}] + ' 'python*' ) dev-python/pytest-timeout[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] ) @@ -66,6 +68,15 @@ python_test() { tests/benchmark/test_baseline_benchmarks.py ) + if [[ ${EPYTHON} == pypy3 ]]; then + # Requires GitPython + EPYTEST_IGNORE+=( + tests/profile/test_profile_against_externals.py + tests/testutils/_primer/test_package_to_lint.py + tests/testutils/_primer/test_primer.py + ) + fi + rm -rf pylint || die local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1