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 2278813933E for ; Thu, 1 Jul 2021 18:39:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12D87E0893; Thu, 1 Jul 2021 18:39:51 +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 EDBEBE0893 for ; Thu, 1 Jul 2021 18:39:50 +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 B931033BF0F for ; Thu, 1 Jul 2021 18:39:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 526E97C0 for ; Thu, 1 Jul 2021 18:39:48 +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: <1625164784.6694617d22b2ba919f7b3ebec6c3b7240053e12b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ubelt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ubelt/ubelt-0.9.5.ebuild X-VCS-Directories: dev-python/ubelt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6694617d22b2ba919f7b3ebec6c3b7240053e12b X-VCS-Branch: master Date: Thu, 1 Jul 2021 18:39:48 +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: df2c995a-a445-4306-8ccb-4047d9c6000c X-Archives-Hash: 9cc6fa20f002e6b516ce60ae730202ab commit: 6694617d22b2ba919f7b3ebec6c3b7240053e12b Author: Michał Górny gentoo org> AuthorDate: Thu Jul 1 18:38:04 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 1 18:39:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6694617d dev-python/ubelt: Port to py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/ubelt/ubelt-0.9.5.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/ubelt/ubelt-0.9.5.ebuild b/dev-python/ubelt/ubelt-0.9.5.ebuild index 1505cc0f7ac..e906563da37 100644 --- a/dev-python/ubelt/ubelt-0.9.5.ebuild +++ b/dev-python/ubelt/ubelt-0.9.5.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -28,6 +28,5 @@ python_test() { ubelt/util_path.py::userhome:0 ) - pytest -vv ${deselect[@]/#/--deselect } tests || - die "Tests fail with ${EPYTHON}" + epytest ${deselect[@]/#/--deselect } tests }