commit: c7b7dc257e24932ab7757521114e31ec491b0649
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 16 16:55:40 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 16 19:07:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b7dc25
dev-python/hiredis: enable pypy3
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/hiredis/hiredis-2.0.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/hiredis/hiredis-2.0.0.ebuild
b/dev-python/hiredis/hiredis-2.0.0.ebuild
index 20a1453d27c..a55b79598ff 100644
--- a/dev-python/hiredis/hiredis-2.0.0.ebuild
+++ b/dev-python/hiredis/hiredis-2.0.0.ebuild
@@ -2,8 +2,8 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
DESCRIPTION="Python extension that wraps hiredis"
@@ -27,5 +27,5 @@ src_prepare() {
python_test() {
cd test || die
- "${EPYTHON}" -m unittest reader.ReaderTest || die "tests failed"
+ "${EPYTHON}" -m unittest -v reader.ReaderTest || die "tests failed"
}