From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1570924-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 7EC9C15814C for <garchives@archives.gentoo.org>; Thu, 16 Nov 2023 17:11:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE3452BC021; Thu, 16 Nov 2023 17:11:32 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABA422BC01F for <gentoo-commits@lists.gentoo.org>; Thu, 16 Nov 2023 17:11:32 +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 EE86D335D42 for <gentoo-commits@lists.gentoo.org>; Thu, 16 Nov 2023 17:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D813139A for <gentoo-commits@lists.gentoo.org>; Thu, 16 Nov 2023 17:11:29 +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: <1700154655.416010bcd28ec6ed0b61a311c5e07096e04fb820.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pure_eval/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pure_eval/pure_eval-0.2.2.ebuild X-VCS-Directories: dev-python/pure_eval/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 416010bcd28ec6ed0b61a311c5e07096e04fb820 X-VCS-Branch: master Date: Thu, 16 Nov 2023 17:11:29 +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: 6c5cdb46-b3dc-4aec-bb71-ed64953296c8 X-Archives-Hash: 2be156af13927d57af7eaca1c27468c7 commit: 416010bcd28ec6ed0b61a311c5e07096e04fb820 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Nov 16 17:07:13 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Nov 16 17:10:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416010bc dev-python/pure_eval: Enable pypy3 Sponsored-by: Ex Makhina, Inc. <info-gentoo <AT> exmakhina.com> Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pure_eval/pure_eval-0.2.2.ebuild | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/dev-python/pure_eval/pure_eval-0.2.2.ebuild b/dev-python/pure_eval/pure_eval-0.2.2.ebuild index fa3b66e47ccf..2e9546fd7db9 100644 --- a/dev-python/pure_eval/pure_eval-0.2.2.ebuild +++ b/dev-python/pure_eval/pure_eval-0.2.2.ebuild @@ -4,16 +4,34 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + inherit distutils-r1 pypi DESCRIPTION="Safely evaluate AST nodes without side effects" -HOMEPAGE="https://github.com/alexmojaki/pure_eval" +HOMEPAGE=" + https://github.com/alexmojaki/pure_eval/ + https://pypi.org/project/pure-eval/ +" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos" -BDEPEND="dev-python/wheel[${PYTHON_USEDEP}]" - distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=() + + case ${EPYTHON} in + pypy3) + EPYTEST_DESELECT+=( + # https://github.com/alexmojaki/pure_eval/issues/15 + tests/test_getattr_static.py::TestGetattrStatic::test_custom_object_dict + tests/test_utils.py::test_safe_name_samples + ) + ;; + esac + + epytest +}