dev-python/sanic: version bump, add py3.8

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
This commit is contained in:
Andrew Ammerlaan
2020-11-26 13:10:36 +01:00
parent a34635da2c
commit b06f91ff29
2 changed files with 19 additions and 6 deletions

View File

@@ -1 +1 @@
DIST sanic-20.6.3.tar.gz 207406 BLAKE2B 323f9d0d4965ee8fab4ffb95140f85d059f1bba777f36cc69703b7569c29a852631dd446dd0469207e8ccca3636aa45acfb6b50f290c6ddcc4f56249683a12b7 SHA512 c2b3eafcaee77e75b603e62feeb397382b2017d80191507a43db2595cc64e8b37b569b204474f94f5bdaae909c83baca7d7667ef46a0dd7324991efe15b22ebf
DIST sanic-20.9.1.tar.gz 214560 BLAKE2B 2df6127d9a4b0cc8fc60e2aafe47b4e10f1474b3bee5b3974265be8c5edcfd2f7fdccb4d2b3f977d2f51ff0a2d0dc33c2d120c7d858fae56d845f6b22261eb7e SHA512 4c19fa2731b98eeb843c272856a2e6a4d25817b29d490dfa9c7e4f086ca91b5a8f4c38488673029ca21d125858d6095f40a960284c487b2601bef2c1fdedca28

View File

@@ -3,7 +3,8 @@
EAPI="7"
PYTHON_COMPAT=( python3_7 )
PYTHON_COMPAT=( python3_{7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
@@ -18,12 +19,15 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# lots of these
# ValueError: Exception during request: [AttributeError("'AsyncConnectionPool' object has no attribute 'arequest'")]
RESTRICT="test"
RDEPEND="
dev-python/aiofiles[${PYTHON_USEDEP}]
~dev-python/httpx-0.11.1[${PYTHON_USEDEP}]
dev-python/httpx[${PYTHON_USEDEP}]
>=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
>=dev-python/multidict-4.0[${PYTHON_USEDEP}]
<dev-python/multidict-5.0[${PYTHON_USEDEP}]
dev-python/multidict[${PYTHON_USEDEP}]
dev-python/ujson[${PYTHON_USEDEP}]
dev-python/uvloop[${PYTHON_USEDEP}]
>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
@@ -47,6 +51,15 @@ distutils_enable_sphinx docs \
dev-python/docutils \
dev-python/pygments \
dev-python/sphinx_rtd_theme \
dev-python/sphinxcontrib-websupport \
dev-python/recommonmark \
www-servers/gunicorn
python_prepare_all() {
# 'dependency' not found in `markers` configuration option
# requires pytest version which is no longer in ::gentoo
rm tests/test_load_module_from_file_location.py || die
rm tests/test_update_config.py || die
distutils-r1_python_prepare_all
}