Skip to content

Commit 61d3d1f

Browse files
committed
Refresh Python dependencies
1 parent 9be1694 commit 61d3d1f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ chardet==4.0.0;python_version>="3.5" and python_version<"3.7"
3636
chardet==5.0.0;python_version>="3.7"
3737
charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"
3838
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"
4042
requests==2.27.1;python_version<"3.5"
4143
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
4244
requests==2.27.1;python_version>="3.6" and python_version<"3.7"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@
163163
'chardet==5.0.0;python_version>="3.7"', # Stay in sync with "requests"
164164
'charset-normalizer==2.0.12;python_version>="3.5" and python_version<"3.7"', # noqa: E501
165165
'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"
167169
'requests==2.27.1;python_version<"3.5"',
168170
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
169171
'requests==2.27.1;python_version>="3.6" and python_version<"3.7"',

0 commit comments

Comments
 (0)