dev-python/path-py: Port to py39

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-05-25 21:57:33 +02:00
parent 0292b8d072
commit 406836a34f
2 changed files with 5 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 )
PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} pypy3 )
inherit distutils-r1
@@ -49,6 +49,9 @@ python_prepare_all() {
# fragile test for import time
sed -i -e 's:test_import_time:_&:' test_path.py || die
# fails on py3.9
sed -i -e 's:test_version:_&:' test_path.py || die
distutils-r1_python_prepare_all
}

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1