Skip to content

Commit fa4af37

Browse files
committed
Use PEP 735 dependency-groups.dev for dev dependencies
uv recently released new version that supports now standardized `[dependency-groups]` table. See [uv 0.4.27](https://github.com/astral-sh/uv/releases/tag/0.4.27) and [PEP 735](https://peps.python.org/pep-0735/)
1 parent 2964b4c commit fa4af37

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

pyproject.toml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ dynamic = ["version"]
1919
[project.urls]
2020
repository = "https://github.com/vrslev/stompman"
2121

22-
[tool.uv]
23-
dev-dependencies = [
24-
"anyio~=4.4.0",
25-
"mypy~=1.11.2",
26-
"pytest-cov~=5.0.0",
27-
"pytest~=8.3.2",
28-
"ruff~=0.6.2",
29-
"uvloop~=0.21.0beta1",
30-
"hypothesis~=6.111.2",
31-
"polyfactory~=2.16.2",
32-
"faker~=28.0.0",
22+
[dependency-groups]
23+
dev = [
24+
"anyio>=4.6.2.post1",
25+
"faker>=30.8.1",
26+
"hypothesis>=6.115.5",
27+
"mypy>=1.13.0",
28+
"polyfactory>=2.17.0",
29+
"pytest-cov>=5.0.0",
30+
"ruff>=0.7.1",
31+
"uvloop>=0.21.0",
3332
]
3433

3534
[build-system]

0 commit comments

Comments
 (0)