dev-python/versioneer: Port to py39

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-06-05 18:03:09 +02:00
parent 9ab5cd9dd7
commit 9643011b2b

View File

@@ -3,7 +3,8 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
@@ -31,8 +32,8 @@ PATCHES=(
python_test() {
esetup.py make_versioneer
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git config --global user.email "you@example.com" || die
git config --global user.name "Your Name" || die
${PYTHON} test/git/test_git.py -v || die
}