Skip to content

Commit 2964c93

Browse files
authored
Use PEP 735 dependency-groups.dev for dev dependencies (#63)
1 parent b7532be commit 2964c93

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

pyproject.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "auto-typing-final"
33
description = "Automagically set typing.Final inside your functions"
44
authors = [{ name = "Lev Vereshchagin", email = "mail@vrslev.com" }]
5-
dependencies = ["ast-grep-py==0.27.3", "pygls==1.3.1"]
5+
dependencies = ["ast-grep-py==0.28.1", "pygls==1.3.1"]
66
requires-python = ">=3.10"
77
readme = "README.md"
88
license = { text = "MIT" }
@@ -22,13 +22,8 @@ Repository = "https://github.com/vrslev/auto-typing-final"
2222
auto-typing-final = "auto_typing_final.main:main"
2323
auto-typing-final-lsp-server = "auto_typing_final.lsp:main"
2424

25-
[tool.uv]
26-
dev-dependencies = [
27-
"mypy==1.11.2",
28-
"pytest==8.3.3",
29-
"pytest-cov==5.0.0",
30-
"ruff==0.6.8",
31-
]
25+
[dependency-groups]
26+
dev = ["mypy==1.13.0", "pytest==8.3.3", "pytest-cov==5.0.0", "ruff==0.7.1"]
3227

3328
[build-system]
3429
requires = ["hatchling", "hatch-vcs"]

0 commit comments

Comments
 (0)