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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 565811382C5 for ; Wed, 23 Jun 2021 21:27:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45248E0933; Wed, 23 Jun 2021 21:27:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1DEDDE0933 for ; Wed, 23 Jun 2021 21:27:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 05D23340AED for ; Wed, 23 Jun 2021 21:27:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 213BE7C2 for ; Wed, 23 Jun 2021 21:27: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: <1624483030.1116865cd30bd6f94b19cafc023877c9b2e6d4bc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fields/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fields/fields-5.0.0-r2.ebuild X-VCS-Directories: dev-python/fields/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1116865cd30bd6f94b19cafc023877c9b2e6d4bc X-VCS-Branch: master Date: Wed, 23 Jun 2021 21:27: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: e874edc1-a7b2-46c7-960e-3511451cfd89 X-Archives-Hash: 86379a28e104d81225f7e2436d9d7846 commit: 1116865cd30bd6f94b19cafc023877c9b2e6d4bc Author: Michał Górny gentoo org> AuthorDate: Wed Jun 23 19:56:32 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 23 21:17:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1116865c dev-python/fields: Enable py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/fields/fields-5.0.0-r2.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/fields/fields-5.0.0-r2.ebuild b/dev-python/fields/fields-5.0.0-r2.ebuild index 15946a9d788..6beb01064bc 100644 --- a/dev-python/fields/fields-5.0.0-r2.ebuild +++ b/dev-python/fields/fields-5.0.0-r2.ebuild @@ -1,11 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -DISTUTILS_USE_SETUPTOOLS=bdepend -PYTHON_COMPAT=( python3_{7..9} pypy3 ) - +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="Container class boilerplate killer" @@ -28,9 +26,11 @@ python_prepare_all() { sed -r \ -e "/--benchmark-disable/d" \ -e 's|\[pytest\]|\[tool:pytest\]|' \ - -e '/^[[:space:]]*--doctest-modules[[:space:]]*$/ d' \ -i setup.cfg || die - rm -rf tests/test_perf.py || die distutils-r1_python_prepare_all } + +python_test() { + epytest --ignore tests/test_perf.py tests +}