File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,15 @@ jedi==0.18.1;python_version>="3.6"
32
32
idna == 2.10 ;python_version < "3.6"
33
33
idna == 3.3 ;python_version >= "3.6"
34
34
chardet == 3.0.4 ;python_version < "3.5"
35
- chardet == 4.0.0 ;python_version >= "3.5"
36
- charset-normalizer == 2.0.12 ;python_version >= "3.5"
35
+ chardet == 4.0.0 ;python_version >= "3.5" and python_version<"3.7"
36
+ chardet == 5.0.0 ;python_version >= "3.7"
37
+ charset-normalizer == 2.0.12 ;python_version >= "3.5" and python_version<"3.7"
38
+ charset-normalizer == 2.1.0 ;python_version >= "3.7"
37
39
urllib3 == 1.26.9
38
40
requests == 2.27.1 ;python_version < "3.5"
39
41
requests == 2.25.1 ;python_version >= "3.5" and python_version<"3.6"
40
42
requests == 2.27.1 ;python_version >= "3.6" and python_version<"3.7"
41
- requests == 2.28.0 ;python_version >= "3.7"
43
+ requests == 2.28.1 ;python_version >= "3.7"
42
44
nose == 1.3.7
43
45
sniffio == 1.2.0 ;python_version >= "3.7"
44
46
h11 == 0.13.0 ;python_version >= "3.7"
Original file line number Diff line number Diff line change 159
159
'idna==2.10;python_version<"3.6"' , # Must stay in sync with "requests"
160
160
'idna==3.3;python_version>="3.6"' , # Must stay in sync with "requests"
161
161
'chardet==3.0.4;python_version<"3.5"' , # Stay in sync with "requests"
162
- 'chardet==4.0.0;python_version>="3.5"' , # Stay in sync with "requests"
163
- 'charset-normalizer==2.0.12;python_version>="3.5"' , # Sync "requests"
162
+ 'chardet==4.0.0;python_version>="3.5" and python_version<"3.7"' ,
163
+ 'chardet==5.0.0;python_version>="3.7"' , # Stay in sync with "requests"
164
+ 'charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"' , # noqa: E501
165
+ 'charset-normalizer==2.1.0;python_version>="3.7"' , # Sync "requests"
164
166
"urllib3==1.26.9" , # Must stay in sync with "requests"
165
167
'requests==2.27.1;python_version<"3.5"' ,
166
168
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"' ,
167
169
'requests==2.27.1;python_version>="3.6" and python_version<"3.7"' ,
168
- 'requests==2.28.0 ;python_version>="3.7"' ,
170
+ 'requests==2.28.1 ;python_version>="3.7"' ,
169
171
"nose==1.3.7" ,
170
172
'sniffio==1.2.0;python_version>="3.7"' ,
171
173
'h11==0.13.0;python_version>="3.7"' ,
You can’t perform that action at this time.
0 commit comments