-
Hi, Pep an packaging user guide has a specification how how poetry has it: [tool.poetry.group.dev.dependencies]
mypy = "^1.14.1" how it would be according to PEP-0735: [dependency-groups]
dev = [
"mypy>=1.14.1",
] it would be nice to have it according to PEP, would be compatible with other tools. Can we expect this in the future? thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is being worked on python-poetry/poetry-core#823 is probably the first piece. Eventually this will be supported for sure. The only reason (after this lands) where you will want to use Poetry's rich specification syntax is when you want to use Poetry specific features. |
Beta Was this translation helpful? Give feedback.
This is being worked on python-poetry/poetry-core#823 is probably the first piece.
Eventually this will be supported for sure. The only reason (after this lands) where you will want to use Poetry's rich specification syntax is when you want to use Poetry specific features.