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 4E2651382C5 for ; Wed, 2 Jun 2021 16:12:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92B87E088D; Wed, 2 Jun 2021 16:12:49 +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 72979E088D for ; Wed, 2 Jun 2021 16:12:49 +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 80767335DC2 for ; Wed, 2 Jun 2021 16:12:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A86547A2 for ; Wed, 2 Jun 2021 16:12:45 +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: <1622650362.a5a795ac543a25bd6f26b1c72bcf4643cac06d37.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keyring/keyring-23.0.1.ebuild X-VCS-Directories: dev-python/keyring/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a5a795ac543a25bd6f26b1c72bcf4643cac06d37 X-VCS-Branch: master Date: Wed, 2 Jun 2021 16:12:45 +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: 196820ee-4b5f-45f7-a5ae-4fd12814b9c9 X-Archives-Hash: 4e87dd87c09a22783ba4c142613cffea commit: a5a795ac543a25bd6f26b1c72bcf4643cac06d37 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 2 16:11:20 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 2 16:12:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a795ac dev-python/keyring: Enable py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/keyring/keyring-23.0.1.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/keyring/keyring-23.0.1.ebuild b/dev-python/keyring/keyring-23.0.1.ebuild index d91059c922c..f1b73ebf00e 100644 --- a/dev-python/keyring/keyring-23.0.1.ebuild +++ b/dev-python/keyring/keyring-23.0.1.ebuild @@ -3,9 +3,7 @@ EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( pypy3 python3_{7..9} ) - +PYTHON_COMPAT=( pypy3 python3_{7..10} ) inherit distutils-r1 DESCRIPTION="Provides access to the system keyring service" @@ -35,5 +33,10 @@ distutils_enable_sphinx docs \ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} python_test() { - epytest --ignore tests/backends/test_kwallet.py + local deselect=( + # this test fails if importlib-metadata returns more than one + # entry, i.e. when keyring is installed already + tests/test_packaging.py::test_entry_point + ) + epytest --ignore tests/backends/test_kwallet.py ${deselect[@]/#/--deselect } }