Skip to content

Commit 0c6113a

Browse files
committed
[py] Fix package names
1 parent d05ae3f commit 0c6113a

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

py/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ TEST_DEPS = [
7676
requirement("filetype"),
7777
requirement("idna"),
7878
requirement("iniconfig"),
79-
requirement("importlib-metadata"),
79+
requirement("importlib_metadata"),
8080
requirement("h11"),
8181
requirement("more-itertools"),
8282
requirement("multidict"),
@@ -200,7 +200,7 @@ py_library(
200200
requirement("trio"),
201201
requirement("trio-websocket"),
202202
requirement("certifi"),
203-
requirement("typing-extensions"),
203+
requirement("typing_extensions"),
204204
requirement("websocket-client"),
205205
],
206206
)
@@ -292,7 +292,7 @@ py_wheel(
292292
"trio~=0.30.0",
293293
"trio-websocket~=0.12.2",
294294
"certifi>=2025.4.26",
295-
"typing-extensions~=4.13.2",
295+
"typing_extensions~=4.13.2",
296296
"websocket-client~=1.8.0",
297297
],
298298
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.13.2",
3333
"websocket-client~=1.8.0",
3434
]
3535

py/requirements.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ filetype==1.2.0
1515
h11==0.16.0
1616
id==1.5.0
1717
idna==3.10
18-
importlib-metadata==8.7.0
18+
importlib_metadata==8.7.0
1919
inflection==0.5.1
2020
iniconfig==2.1.0
21-
jaraco-classes==3.4.0
22-
jaraco-context==6.0.1
23-
jaraco-functools==4.1.0
21+
jaraco.classes==3.4.0
22+
jaraco.context==6.0.1
23+
jaraco.functools==4.1.0
2424
jeepney==0.9.0
2525
keyring==25.6.0
2626
markdown-it-py==3.0.0
@@ -34,29 +34,29 @@ platformdirs==4.3.8
3434
pluggy==1.5.0
3535
py==1.11.0
3636
pycparser==2.22
37-
pygments==2.19.1
38-
pyopenssl==25.0.0
37+
Pygments==2.19.1
38+
pyOpenSSL==25.0.0
3939
pyparsing==3.2.3
4040
pyproject-api==1.9.0
41-
pysocks==1.7.1
41+
PySocks==1.7.1
4242
pytest==8.3.5
4343
pytest-instafail==0.5.0
4444
pytest-mock==3.14.0
4545
pytest-trio==0.8.0
46-
readme-renderer==44.0
46+
readme_renderer==44.0
4747
requests==2.32.3
4848
requests-toolbelt==1.0.0
4949
rfc3986==2.0.0
5050
rich==14.0.0
51-
secretstorage==3.3.3
51+
SecretStorage==3.3.3
5252
sniffio==1.3.1
5353
sortedcontainers==2.4.0
5454
toml==0.10.2
5555
tox==4.25.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.13.2
6060
urllib3[socks]==2.4.0
6161
virtualenv==20.31.2
6262
websocket-client==1.8.0

0 commit comments

Comments
 (0)