Skip to content

Commit 94454e7

Browse files
committed
[py] Loosen dependency specifier for urllib3 in packaging
1 parent 0d9ee19 commit 94454e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ py_wheel(
327327
python_requires = ">=3.9",
328328
python_tag = "py3",
329329
requires = [
330-
"urllib3[socks]~=2.5.0",
330+
"urllib3[socks]>=2.5.0;<3",
331331
"trio~=0.30.0",
332332
"trio-websocket~=0.12.2",
333333
"certifi>=2025.6.15",

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.13",
2727
]
2828
dependencies = [
29-
"urllib3[socks]~=2.5.0",
29+
"urllib3[socks]>=2.5.0;<3",
3030
"trio~=0.30.0",
3131
"trio-websocket~=0.12.2",
3232
"certifi>=2025.6.15",

0 commit comments

Comments
 (0)