diff options
author | 2020-05-26 14:18:52 +0200 | |
---|---|---|
committer | 2020-05-26 14:58:28 +0200 | |
commit | 9f80f8828b4a8ba78a9c147c036008c8978c78da (patch) | |
tree | 1ec628f6fcdff8593c637540227c13f0fe93876e | |
parent | dev-python/pytest-xdist: Port to py39 (diff) | |
download | gentoo-9f80f8828b4a8ba78a9c147c036008c8978c78da.tar.gz gentoo-9f80f8828b4a8ba78a9c147c036008c8978c78da.tar.bz2 gentoo-9f80f8828b4a8ba78a9c147c036008c8978c78da.zip |
dev-python/pygments: Port to py39
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/pygments/pygments-2.5.2.ebuild | 4 | ||||
-rw-r--r-- | dev-python/pygments/pygments-2.6.1.ebuild | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/pygments/pygments-2.5.2.ebuild b/dev-python/pygments/pygments-2.5.2.ebuild index 4f0d6aff821c..8771025bd72a 100644 --- a/dev-python/pygments/pygments-2.5.2.ebuild +++ b/dev-python/pygments/pygments-2.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) inherit distutils-r1 bash-completion-r1 @@ -32,7 +32,7 @@ distutils_enable_sphinx doc python_test() { cp -r -l tests "${BUILD_DIR}"/ || die - pytest "${BUILD_DIR}"/tests || die "Tests fail with ${EPYTHON}" + pytest -vv "${BUILD_DIR}"/tests || die "Tests fail with ${EPYTHON}" } python_install_all() { diff --git a/dev-python/pygments/pygments-2.6.1.ebuild b/dev-python/pygments/pygments-2.6.1.ebuild index eef8f5251bf8..89bb177bba44 100644 --- a/dev-python/pygments/pygments-2.6.1.ebuild +++ b/dev-python/pygments/pygments-2.6.1.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 bash-completion-r1 |