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 CC55D1580B9 for ; Wed, 25 Aug 2021 23:39:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 063CBE0933; Wed, 25 Aug 2021 23:39:52 +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 73C60E0933 for ; Wed, 25 Aug 2021 23:39:51 +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 62AC333BEAC for ; Wed, 25 Aug 2021 23:39:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 703AF464 for ; Wed, 25 Aug 2021 23:39:48 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1629934718.4d9e13786adbdb4efabc7094214288b089b534ec.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/isort/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/isort/isort-5.9.3.ebuild X-VCS-Directories: dev-python/isort/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 4d9e13786adbdb4efabc7094214288b089b534ec X-VCS-Branch: master Date: Wed, 25 Aug 2021 23: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: b250a0a0-e87e-4cc1-bf54-caf1805125cb X-Archives-Hash: cc727829924d7d44e7bcdcb92bfb110a commit: 4d9e13786adbdb4efabc7094214288b089b534ec Author: Louis Sautier gentoo org> AuthorDate: Wed Aug 25 23:29:55 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Aug 25 23:38:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9e1378 dev-python/isort: enable py3.10, use EPYTEST_IGNORE Signed-off-by: Louis Sautier gentoo.org> dev-python/isort/isort-5.9.3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/isort/isort-5.9.3.ebuild b/dev-python/isort/isort-5.9.3.ebuild index d0eb4aea162..31f30cb1538 100644 --- a/dev-python/isort/isort-5.9.3.ebuild +++ b/dev-python/isort/isort-5.9.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{8..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="A python utility/library to sort imports" @@ -51,9 +51,9 @@ python_test() { popd >/dev/null || die done - local deselect=( + local EPYTEST_IGNORE=( # Excluded from upstream's test script tests/unit/test_deprecated_finders.py ) - epytest tests/unit ${deselect[@]/#/--deselect } + epytest tests/unit }