Skip to content

Commit b213d22

Browse files
committed
[py] Loosen dependency specifiers in package config
1 parent d808465 commit b213d22

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

py/BUILD.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,11 +328,11 @@ py_wheel(
328328
python_tag = "py3",
329329
requires = [
330330
"urllib3[socks]>=2.5.0,<3.0",
331-
"trio~=0.30.0",
332-
"trio-websocket~=0.12.2",
331+
"trio>=0.30.0,<1.0",
332+
"trio-websocket>=0.12.2,<1.0",
333333
"certifi>=2025.6.15",
334-
"typing_extensions~=4.14.0",
335-
"websocket-client~=1.8.0",
334+
"typing_extensions>=4.14.0,<5.0",
335+
"websocket-client>=1.8.0<2.0",
336336
],
337337
strip_path_prefixes = [
338338
"py/",

py/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"urllib3[socks]>=2.5.0,<3.0",
30-
"trio~=0.30.0",
31-
"trio-websocket~=0.12.2",
30+
"trio>=0.30.0,<1.0",
31+
"trio-websocket>=0.12.2,<1.0",
3232
"certifi>=2025.6.15",
33-
"typing_extensions~=4.14.0",
34-
"websocket-client~=1.8.0",
33+
"typing_extensions>=4.14.0,<5.0",
34+
"websocket-client>=1.8.0<2.0",
3535
]
3636

3737
[project.urls]

0 commit comments

Comments
 (0)