dev-python/flake8-import-order: Port up to py3.9

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-11-17 15:48:06 +01:00
parent 3989ae4477
commit 012324c01e

View File

@@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python3_7 )
PYTHON_COMPAT=( python3_{7..9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
@@ -28,5 +28,5 @@ DEPEND="${RDEPEND}
)"
python_test() {
py.test -v tests || die "tests failed with ${EPYTHON}"
pytest -vv tests || die "tests failed with ${EPYTHON}"
}