]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Pin uvloop to fix 3.8-dev compilation issue (#323)
authorFlorimond Manca <florimond.manca@gmail.com>
Sat, 7 Sep 2019 04:32:38 +0000 (06:32 +0200)
committerSeth Michael Larson <sethmichaellarson@gmail.com>
Sat, 7 Sep 2019 04:32:38 +0000 (23:32 -0500)
.gitignore
test-requirements.txt

index fcadefce3eace1c5436c31b702e16a824fd956c7..4c57b08ca90b4d49b750710c495f86fe6cd8661c 100644 (file)
@@ -6,5 +6,6 @@ __pycache__/
 htmlcov/
 site/
 *.egg-info/
-venv/
+venv*/
 .nox
+.python-version
index d799f50399f2961305cf6d553681fd4207b63c04..cbef3872c282c4a0b16729827ca4e780928a105d 100644 (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'