Make poetry show <package> --tree
show who requires <package> as well
#5396
Labels
kind/feature
Feature requests/implementations
Feature Request
Consider a project with
pyproject.toml
reading:The full dependencies, as shown by
poetry show --tree
, areFor larger projects, it can be helpful to find out which package is requiring another:
for example, say I want to figure out which of my top-level dependencies is requiring
packaging
.Currently (poetry version 1.1.13) the behaviour of
poetry show packaging --tree
is:So, it doesn't tell me that it is
pytest
which is asking forpackaging
to be present;however this information is available as the full output shows.
I'm proposing that the output could look something like:
and so on for all the packages which require the one on hand.
The text was updated successfully, but these errors were encountered: