From: Florimond Manca Date: Sat, 7 Sep 2019 04:32:38 +0000 (+0200) Subject: Pin uvloop to fix 3.8-dev compilation issue (#323) X-Git-Tag: 0.7.3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b97b2ed00a03d7528abcb45d59e111bebdf0c1a;p=thirdparty%2Fhttpx.git Pin uvloop to fix 3.8-dev compilation issue (#323) --- diff --git a/.gitignore b/.gitignore index fcadefce..4c57b08c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,6 @@ __pycache__/ htmlcov/ site/ *.egg-info/ -venv/ +venv*/ .nox +.python-version diff --git a/test-requirements.txt b/test-requirements.txt index d799f503..cbef3872 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -14,3 +14,6 @@ pytest-asyncio pytest-cov trustme uvicorn + +# https://github.com/MagicStack/uvloop/issues/266 +uvloop<0.13; sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'pypy'