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
Running pip-tools compile with --all-extras on multiple sources containing extras always fails with the following error:
--all-extras
Error: Invalid value: --extra has no effect when used with --all-extras
python 3.10.8
pip 22.2.2
pip-compile, version 7.3.1.dev21
pyproject.toml
[project] name = "package-a" version = "0.1.0" [project.optional-dependencies] test = []
python -m piptools compile --all-extras package-a/pyproject.toml package-b/pyproject.toml
A requirements.txt file for the combined projects including all extras should be generated.
requirements.txt
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Running pip-tools compile with
--all-extras
on multiple sources containing extras always fails with the following error:Environment Versions
python 3.10.8
pip 22.2.2
pip-compile, version 7.3.1.dev21
Steps to replicate
pyproject.toml
containingpython -m piptools compile --all-extras package-a/pyproject.toml package-b/pyproject.toml
Expected result
A
requirements.txt
file for the combined projects including all extras should be generated.Actual result
The text was updated successfully, but these errors were encountered: