We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pyproject.toml
Hi!
First of all, thank you for developing and maintaining this awesome library!
I would like to ask if you could support dependency groups in pyproject.toml - PEP 735
To be able to merge groups and form a new one, as follows:
[tool.pdm.dev-dependencies] test = ["pytest", "coverage"] docs = ["sphinx", "sphinx-rtd-theme"] typing = ["mypy", "types-requests"] [dependency-groups] typing-test = [{include = "typing"}, {include = "test"}] dev = [{include = "test"}, {include = "docs"}, {include = "typing"}] all = [{include = "test"}, {include = "docs"}, {include = "typing"}, "useful-something"]
The text was updated successfully, but these errors were encountered:
We have no interest in supporting it until the PEP is accepted
Sorry, something went wrong.
exceptiongroup
The PEP has been accepted.
No branches or pull requests
Is your feature/enhancement proposal related to a problem? Please describe.
Hi!
First of all, thank you for developing and maintaining this awesome library!
I would like to ask if you could support dependency groups in
pyproject.toml
- PEP 735Describe the solution you'd like
To be able to merge groups and form a new one, as follows:
The text was updated successfully, but these errors were encountered: