dev-python/watchdog: Add python3_7

Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Closes: https://github.com/gentoo/gentoo/pull/14013
Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Andrew Ammerlaan
2019-12-27 14:45:13 +01:00
committed by Aaron Bauman
parent afefec41c3
commit 3c0f37faa0

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6} pypy)
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy)
inherit distutils-r1 eutils
@@ -15,27 +15,21 @@ LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dev-python/argh[${PYTHON_USEDEP}]
dev-python/pathtools[${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
test? (
dev-python/pytest[${PYTHON_USEDEP}]
>=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}]
)"
test? ( >=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}] )"
distutils_enable_tests pytest
src_prepare() {
default
rm tox.ini || die
}
python_test() {
pytest -vv || die "Tests failed with ${EPYTHON}"
}
pkg_postinst() {
optfeature "Bash completion" dev-python/argcomplete
}