diff options
author | 2021-06-05 15:36:56 +0200 | |
---|---|---|
committer | 2021-06-05 15:36:56 +0200 | |
commit | 99cf97c68efb31fd98d7b7818ddb6df967674d01 (patch) | |
tree | b665ba607af4e386f5fdd1622a60b29960978602 /dev-python/flask-paginate | |
parent | dev-python/flask-debug: Enable py3.10 (diff) | |
download | gentoo-99cf97c68efb31fd98d7b7818ddb6df967674d01.tar.gz gentoo-99cf97c68efb31fd98d7b7818ddb6df967674d01.tar.bz2 gentoo-99cf97c68efb31fd98d7b7818ddb6df967674d01.zip |
dev-python/flask-paginate: Enable py3.10
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/flask-paginate')
-rw-r--r-- | dev-python/flask-paginate/flask-paginate-0.8.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-python/flask-paginate/flask-paginate-0.8.1.ebuild b/dev-python/flask-paginate/flask-paginate-0.8.1.ebuild index 04652ff0b78d..bff5d1a80563 100644 --- a/dev-python/flask-paginate/flask-paginate-0.8.1.ebuild +++ b/dev-python/flask-paginate/flask-paginate-0.8.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} pypy3 ) +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="Pagination support for flask" @@ -19,5 +19,5 @@ RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" distutils_enable_tests pytest python_test() { - pytest -vv tests/tests.py || die "tests failed with ${EPYTHON}" + epytest tests/tests.py } |