From 6b97b2ed00a03d7528abcb45d59e111bebdf0c1a Mon Sep 17 00:00:00 2001 From: Florimond Manca Date: Sat, 7 Sep 2019 06:32:38 +0200 Subject: [PATCH] Pin uvloop to fix 3.8-dev compilation issue (#323) --- .gitignore | 3 ++- test-requirements.txt | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) 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' -- 2.47.3