Commit a830203
committed
Update pyproject to use standard practices
* **Observation:** The `pyproject.toml` uses a non-standard `[dependency-groups]` table for development dependencies.
* **Recommendation:** Migrate from `[dependency-groups]` to the PEP 621 standard `[project.optional-dependencies]`. This improves compatibility with a wider range of modern Python packaging tools, including `pip`.
* **Why:** While `uv` understands `[dependency-groups]`, the standard practice is to use `[project.optional-dependencies]`. This ensures that a user can install development dependencies with `pip install .[dev]` without needing `uv`.1 parent c983481 commit a830203
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
0 commit comments