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 1795313835A for ; Sat, 22 May 2021 10:52:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41845E0870; Sat, 22 May 2021 10:52:30 +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 278A9E0870 for ; Sat, 22 May 2021 10:52:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 48048340C8A for ; Sat, 22 May 2021 10:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B783B798 for ; Sat, 22 May 2021 10:52:26 +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: <1621680741.6b290794fe12f8998ed719abe5d3eb8836f70950.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zipp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zipp/zipp-3.4.1.ebuild X-VCS-Directories: dev-python/zipp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6b290794fe12f8998ed719abe5d3eb8836f70950 X-VCS-Branch: master Date: Sat, 22 May 2021 10:52:26 +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: 98fd8c22-df4e-4c25-9055-c49f4fbb0957 X-Archives-Hash: fc116b2a2b55f674806117aac3be3e4e commit: 6b290794fe12f8998ed719abe5d3eb8836f70950 Author: Zamarin Arthur gmail com> AuthorDate: Fri May 21 13:57:40 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 22 10:52:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b290794 dev-python/zipp: bump to python 3.10 passes tests Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Michał Górny gentoo.org> dev-python/zipp/zipp-3.4.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/zipp/zipp-3.4.1.ebuild b/dev-python/zipp/zipp-3.4.1.ebuild index e7eae1e79a9..49091cfd7e4 100644 --- a/dev-python/zipp/zipp-3.4.1.ebuild +++ b/dev-python/zipp/zipp-3.4.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{7..9} ) +PYTHON_COMPAT=( pypy3 python3_{7..10} ) inherit distutils-r1 @@ -36,5 +36,5 @@ python_prepare_all() { python_test() { # Ignoring zipp.py from ${S} avoids ImportPathMismatchError with Python < 3.8 # by ensuring only zipp from ${BUILD_DIR} is loaded - pytest --ignore zipp.py -vv || die "Tests fail with ${EPYTHON}" + epytest --ignore zipp.py }