Skip to content

Commit 3468b67

Browse files
committed
dev deps
1 parent 958320a commit 3468b67

2 files changed

Lines changed: 30 additions & 7 deletions

File tree

asr-worker/pyproject.toml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ workflows = "asr_worker.workflows:REGISTRY"
3939
[project.entry-points."datashare.activities"]
4040
activities = "asr_worker.activities:REGISTRY"
4141

42-
43-
4442
[[tool.uv.index]]
4543
name = "pytorch-cpu"
4644
url = "https://download.pytorch.org/whl/cpu"
@@ -62,11 +60,20 @@ datashare-python = { path = "../datashare-python", editable = true }
6260
package = true
6361
override-dependencies = ["kaldialign>=0.9.3"]
6462

65-
[tool.pylint."MESSAGES CONTROL"]
66-
disable = [
67-
"missing-module-docstring",
68-
"logging-fstring-interpolation",
69-
"broad-exception-caught"
63+
[dependency-groups]
64+
dev = [
65+
"black>=26.1.0",
66+
"datashare-python~=0.1.3",
67+
"nest-asyncio>=1.6.0",
68+
"pre-commit>=4.5.1",
69+
"psutil>=6.1.0",
70+
"pylint~=3.1.0",
71+
"pytest~=8.1",
72+
"pytest-asyncio~=0.24",
73+
"pytest-timeout==2.4.0",
74+
"redis[hiredis]>=5.2.1",
75+
"ruff==0.15.2",
76+
"typing-extensions>=4.15.0",
7077
]
7178

7279
[tool.uv.pip]

translation-worker/pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@ name = "pytorch-cpu"
4141
url = "https://download.pytorch.org/whl/cpu"
4242
explicit = true
4343

44+
[dependency-groups]
45+
dev = [
46+
"black>=26.1.0",
47+
"datashare-python~=0.1.3",
48+
"nest-asyncio>=1.6.0",
49+
"pre-commit>=4.5.1",
50+
"psutil>=6.1.0",
51+
"pylint~=3.1.0",
52+
"pytest~=8.1",
53+
"pytest-asyncio~=0.24",
54+
"pytest-timeout==2.4.0",
55+
"redis[hiredis]>=5.2.1",
56+
"ruff==0.15.2",
57+
"typing-extensions>=4.15.0",
58+
]
59+
4460
[tool.pytest.ini_options]
4561
asyncio_mode = "auto"
4662
asyncio_default_fixture_loop_scope = "session"

0 commit comments

Comments
 (0)