Skip to content

Commit 0fe5ed2

Browse files
authored
[py] New script to update Python dependencies (#15845)
- Adds new shell script for updating Python dev dependencies (./scripts/update_py_dependencies.sh) - Bumps Python package dependencies
1 parent 449a0b7 commit 0fe5ed2

File tree

6 files changed

+267
-186
lines changed

6 files changed

+267
-186
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ py_wheel(
312312
"trio~=0.30.0",
313313
"trio-websocket~=0.12.2",
314314
"certifi>=2025.4.26",
315-
"typing_extensions~=4.13.2",
315+
"typing_extensions~=4.14.0",
316316
"websocket-client~=1.8.0",
317317
],
318318
strip_path_prefixes = [

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies = [
2929
"trio~=0.30.0",
3030
"trio-websocket~=0.12.2",
3131
"certifi>=2025.4.26",
32-
"typing_extensions~=4.13.2",
32+
"typing_extensions~=4.14.0",
3333
"websocket-client~=1.8.0",
3434
]
3535

py/requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
async-generator==1.10
22
attrs==25.3.0
3-
cachetools==5.5.2
3+
cachetools==6.0.0
44
certifi==2025.4.26
55
cffi==1.17.1
66
chardet==5.2.0
77
charset-normalizer==3.4.2
88
colorama==0.4.6
9-
cryptography==44.0.3
9+
cryptography==45.0.3
1010
debugpy==1.8.14
1111
distlib==0.3.9
1212
docutils==0.21.2
@@ -26,22 +26,22 @@ keyring==25.6.0
2626
markdown-it-py==3.0.0
2727
mdurl==0.1.2
2828
more-itertools==10.7.0
29-
multidict==6.4.3
29+
multidict==6.4.4
3030
nh3==0.2.21
3131
outcome==1.3.0.post0
3232
packaging==25.0
3333
platformdirs==4.3.8
34-
pluggy==1.5.0
34+
pluggy==1.6.0
3535
py==1.11.0
3636
pycparser==2.22
3737
Pygments==2.19.1
38-
pyOpenSSL==25.0.0
38+
pyOpenSSL==25.1.0
3939
pyparsing==3.2.3
40-
pyproject-api==1.9.0
40+
pyproject-api==1.9.1
4141
PySocks==1.7.1
42-
pytest==8.3.5
42+
pytest==8.4.0
4343
pytest-instafail==0.5.0
44-
pytest-mock==3.14.0
44+
pytest-mock==3.14.1
4545
pytest-trio==0.8.0
4646
readme_renderer==44.0
4747
requests==2.32.3
@@ -52,13 +52,13 @@ SecretStorage==3.3.3
5252
sniffio==1.3.1
5353
sortedcontainers==2.4.0
5454
toml==0.10.2
55-
tox==4.25.0
55+
tox==4.26.0
5656
trio==0.30.0
5757
trio-websocket==0.12.2
5858
twine==6.1.0
59-
typing_extensions==4.13.2
59+
typing_extensions==4.14.0
6060
urllib3[socks]==2.4.0
6161
virtualenv==20.31.2
6262
websocket-client==1.8.0
6363
wsproto==1.2.0
64-
zipp==3.21.0
64+
zipp==3.22.0

0 commit comments

Comments
 (0)