Pin uvloop to fix 3.8-dev compilation issue (#323)

This commit is contained in:
Florimond Manca 2019-09-07 06:32:38 +02:00 committed by Seth Michael Larson
parent ab9cd0ea11
commit 6b97b2ed00
2 changed files with 5 additions and 1 deletions

3
.gitignore vendored
View File

@ -6,5 +6,6 @@ __pycache__/
htmlcov/
site/
*.egg-info/
venv/
venv*/
.nox
.python-version

View File

@ -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'