dev-python/transaction: add py3.11, drop py3.8

use PEP517

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2023-02-04 17:07:59 -05:00
parent 15391e543e
commit edaa5f5e96

View File

@@ -1,9 +1,10 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} pypy3 )
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} pypy3 )
inherit distutils-r1
@@ -28,10 +29,10 @@ BDEPEND="
DOCS="CHANGES.rst README.rst"
distutils_enable_tests nose
distutils_enable_tests unittest
distutils_enable_sphinx docs
src_test() {
cd src || die
python_foreach_impl python_test
cd "${S}/src" || die
distutils-r1_src_test
}