Merge pull request #4986 from wRAR/uvloop-py36

Skip uvloop 0.15.0+ on py36.
This commit is contained in:
Adrián Chaves 2021-02-11 12:07:28 +01:00 committed by GitHub
commit ea92b49aaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ pytest-twisted >= 1.11
pytest-xdist
sybil >= 1.3.0 # https://github.com/cjw296/sybil/issues/20#issuecomment-605433422
testfixtures
uvloop; platform_system != "Windows"
uvloop < 0.15.0; platform_system != "Windows" and python_version == '3.6'
uvloop; platform_system != "Windows" and python_version > '3.6'
# optional for shell wrapper tests
bpython