commit: 98378219f59ae553ef9b4e364b6cf34d4749eaec
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 8 12:09:16 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Aug 8 12:09:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98378219
dev-python/verboselogs: enable py3.10 and disable py3.7, use epytest
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/verboselogs/verboselogs-1.7.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/verboselogs/verboselogs-1.7.ebuild
b/dev-python/verboselogs/verboselogs-1.7.ebuild
index e52c880cfa1..4f746ac0c6f 100644
--- a/dev-python/verboselogs/verboselogs-1.7.ebuild
+++ b/dev-python/verboselogs/verboselogs-1.7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
inherit distutils-r1
@@ -24,5 +24,5 @@ distutils_enable_sphinx docs
distutils_enable_tests pytest
python_test() {
- pytest -vv ${PN}/tests.py || die "Tests fail with ${EPYTHON}"
+ epytest ${PN}/tests.py
}