Skip to content

Commit e7056af

Browse files
committed
Refresh Python dependencies
1 parent 94ba70b commit e7056af

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ jedi==0.18.1;python_version>="3.6"
3232
idna==2.10;python_version<"3.6"
3333
idna==3.3;python_version>="3.6"
3434
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"
3739
urllib3==1.26.9
3840
requests==2.27.1;python_version<"3.5"
3941
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
4042
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"
4244
nose==1.3.7
4345
sniffio==1.2.0;python_version>="3.7"
4446
h11==0.13.0;python_version>="3.7"

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,15 @@
159159
'idna==2.10;python_version<"3.6"', # Must stay in sync with "requests"
160160
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
161161
'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"
164166
"urllib3==1.26.9", # Must stay in sync with "requests"
165167
'requests==2.27.1;python_version<"3.5"',
166168
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
167169
'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"',
169171
"nose==1.3.7",
170172
'sniffio==1.2.0;python_version>="3.7"',
171173
'h11==0.13.0;python_version>="3.7"',

0 commit comments

Comments
 (0)