Skip to content

Commit 45688a4

Browse files
Move tool.uv.dev-dependencies (deprecated) to dependency-groups.dev (#5063)
## Summary - Move `python/codegen/pyproject.toml` off the deprecated `[tool.uv] dev-dependencies` key onto the [PEP 735](https://peps.python.org/pep-0735) `[dependency-groups] dev` table. - See https://docs.astral.sh/uv/concepts/projects/dependencies/#legacy-dev-dependencies for the upstream deprecation note. - `uv.lock` does not need regeneration: uv represents both forms with the same `[package.dev-dependencies]` / `[package.metadata.requires-dev]` structure. ## Test plan - [ ] `uv lock --check` in `python/codegen/` passes (lockfile still consistent with `pyproject.toml`). This pull request and its description were written by Isaac.
1 parent c548038 commit 45688a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/codegen/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ testpaths = [
1111
"codegen_tests",
1212
]
1313

14-
[tool.uv]
15-
dev-dependencies = [
14+
[dependency-groups]
15+
dev = [
1616
"pytest==8.3.3",
1717
]

0 commit comments

Comments
 (0)