dev-python/aiohttp-cors: Tested on py3.5 & py3.6

This commit is contained in:
Michał Górny
2017-04-20 15:36:53 +02:00
parent 02ad1f22e0
commit eea5ec8ca5

View File

@@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python3_4 )
PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
inherit distutils-r1
@@ -29,6 +29,13 @@ DEPEND="${RDEPEND}
dev-python/selenium[${PYTHON_USEDEP}]
)"
python_prepare_all() {
# for some reason, it is installed by 'setup.py test' on py!=3.4
# TODO: investigate
sed -i -e '/typing/d' setup.py || die
distutils-r1_python_prepare_all
}
python_test() {
esetup.py test
}