Skip to content

Commit 83b8da0

Browse files
committed
fix RequestsDependencyWarning by updating requests
it fixes the python2.7/site-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.1) or chardet (3.0.4) doesn't match a supported version! RequestsDependencyWarning) by upgrading requests from 2.21.0 to 2.22.0. This implies in fact the urllib3 upgrade from (1.25.1 -> 1.25.3) which resolves the warning. ref. streamlink/streamlink#2448 (comment)
1 parent 9f9be6a commit 83b8da0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
asn1crypto==0.24.0
32
certifi==2019.3.9
43
cffi==1.12.3
@@ -14,9 +13,9 @@ pyasn1==0.4.5
1413
pycparser==2.19
1514
PyNaCl==1.3.0
1615
pyOpenSSL==19.0.0
17-
requests==2.21.0
16+
requests==2.22.0
1817
six==1.12.0
19-
urllib3==1.25.1
18+
urllib3==1.25.3
2019
aiohttp==3.5.4; python_version >= '3.5'
2120
async-timeout==3.0.1; python_version >= '3.5'
2221
attrs==19.1.0; python_version >= '3.5'

0 commit comments

Comments
 (0)