Skip to content

Commit 19a4582

Browse files
authored
Support newer versions of urllib3 (#11993)
1 parent 0ce64cb commit 19a4582

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ py_wheel(
215215
python_requires = ">=3.7",
216216
python_tag = "py3",
217217
requires = [
218-
"urllib3[socks]~=1.26",
218+
"urllib3[socks]>=1.26,<3",
219219
"trio~=0.17",
220220
"trio-websocket~=0.9",
221221
"certifi>=2021.10.8",

py/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ sortedcontainers==2.4.0
2929
toml==0.10.2
3030
trio==0.20.0
3131
trio-websocket==0.9.2
32-
urllib3[socks]==1.26.9
32+
urllib3[socks]==2.0.2
3333
wsproto==1.1.0
3434
zipp==3.8.0

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
'selenium.webdriver.support', ],
7272
'include_package_data': True,
7373
'install_requires': [
74-
"urllib3[socks]~=1.26",
74+
"urllib3[socks]>=1.26,<3",
7575
"trio~=0.17",
7676
"trio-websocket~=0.9",
7777
"certifi>=2021.10.8",

0 commit comments

Comments
 (0)