dev-python/pyte: Enable py3.8, clean up
authorMichał Górny <mgorny@gentoo.org>
Fri, 24 Jan 2020 07:49:53 +0000 (08:49 +0100)
committerMichał Górny <mgorny@gentoo.org>
Fri, 24 Jan 2020 19:18:40 +0000 (20:18 +0100)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-python/pyte/pyte-0.8.0-r1.ebuild

index c9d871fa5b676dccb8bc2d2563a65d6a58b20410..880144fbda60f56ef20fd4c3e99341ac0fc1fcf3 100644 (file)
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 
@@ -16,14 +16,10 @@ SRC_URI="https://github.com/selectel/pyte/archive/${PV}.tar.gz -> ${P}.tar.gz"
 SLOT="0"
 LICENSE="LGPL-3"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-"
+
+distutils_enable_tests pytest
 
 python_prepare_all() {
        # run pytest directly for tests
@@ -31,7 +27,3 @@ python_prepare_all() {
 
        distutils-r1_python_prepare_all
 }
-
-python_test() {
-       py.test -v || die "tests failed with ${EPYTHON}"
-}