Skip to content

Commit

Permalink
Fix malformed TOML in PEP 735
Browse files Browse the repository at this point in the history
  • Loading branch information
sirosen committed Dec 6, 2023
1 parent 2aaf94c commit a9dbb36
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions peps/pep-0735.rst
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,13 @@ equivalently to ``dependencies=["aiohttp", "sqlalchemy"]``:
[project]
dynamic = ["dependencies"]
[dependency-groups]
http = ["aiohttp"]
db = ["sqlalchemy"]
[tool.some-build-tool.dynamic]
dependencies = {
"dependency-groups": ["http", "db"]
}
dependencies = { dependency-groups = ["http", "db"] }
Build backends may use Dependency Groups in this way.

Expand Down

0 comments on commit a9dbb36

Please sign in to comment.