File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ chardet==4.0.0;python_version>="3.5" and python_version<"3.7"
36
36
chardet == 5.0.0 ;python_version >= "3.7"
37
37
charset-normalizer == 2.0.12 ;python_version >= "3.5" and python_version<"3.7"
38
38
charset-normalizer == 2.1.0 ;python_version >= "3.7"
39
- urllib3 == 1.26.9
39
+ urllib3 == 1.26.10 ;python_version < "3.5"
40
+ urllib3 == 1.26.9 ;python_version >= "3.5" and python_version<"3.6"
41
+ urllib3 == 1.26.10 ;python_version > "3.6"
40
42
requests == 2.27.1 ;python_version < "3.5"
41
43
requests == 2.25.1 ;python_version >= "3.5" and python_version<"3.6"
42
44
requests == 2.27.1 ;python_version >= "3.6" and python_version<"3.7"
Original file line number Diff line number Diff line change 163
163
'chardet==5.0.0;python_version>="3.7"' , # Stay in sync with "requests"
164
164
'charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"' , # noqa: E501
165
165
'charset-normalizer==2.1.0;python_version>="3.7"' , # Sync "requests"
166
- "urllib3==1.26.9" , # Must stay in sync with "requests"
166
+ 'urllib3==1.26.10;python_version<"3.5"' , # Sync with "requests"
167
+ 'urllib3==1.26.9;python_version>="3.5" and python_version<"3.6"' ,
168
+ 'urllib3==1.26.10;python_version>"3.6"' , # Sync with "requests"
167
169
'requests==2.27.1;python_version<"3.5"' ,
168
170
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"' ,
169
171
'requests==2.27.1;python_version>="3.6" and python_version<"3.7"' ,
You can’t perform that action at this time.
0 commit comments