commit: 4d9e13786adbdb4efabc7094214288b089b534ec
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 23:29:55 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> 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 <sbraz <AT> 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
}