Fix CI by pinning IDNA (#19038)

* Fix CI

* Actual fix by @sdague
This commit is contained in:
Paulus Schoutsen 2018-12-05 14:43:29 +01:00 committed by GitHub
parent 850caef5c1
commit 0e9e253b7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,7 @@ async_timeout==3.0.1
attrs==18.2.0
bcrypt==3.1.4
certifi>=2018.04.16
idna==2.7
jinja2>=2.10
PyJWT==1.6.4
cryptography==2.3.1

View File

@ -5,6 +5,7 @@ async_timeout==3.0.1
attrs==18.2.0
bcrypt==3.1.4
certifi>=2018.04.16
idna==2.7
jinja2>=2.10
PyJWT==1.6.4
cryptography==2.3.1

View File

@ -38,6 +38,8 @@ REQUIRES = [
'attrs==18.2.0',
'bcrypt==3.1.4',
'certifi>=2018.04.16',
# Dec 5, 2018: Idna released 2.8, requests caps idna at <2.8, CI fails
'idna==2.7',
'jinja2>=2.10',
'PyJWT==1.6.4',
# PyJWT has loose dependency. We want the latest one.