commit: 610552dc857e60ee07e21464b3272abc19970e15
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 8 13:05:50 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Aug 8 13:18:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=610552dc
dev-python/capturer: enable py3.10 and disable py3.7, use epytest
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/capturer/capturer-3.0.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/capturer/capturer-3.0.ebuild
b/dev-python/capturer/capturer-3.0.ebuild
index 5e5bb588b34..cfb2c8736a4 100644
--- a/dev-python/capturer/capturer-3.0.ebuild
+++ b/dev-python/capturer/capturer-3.0.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
@@ -23,5 +23,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
}