I've a poetry-managed project. When I run:
poetry add isort@5.10.1 --dev
I'm getting this dependency added to the project, however some other dependencies are automatically removed, namely:
importlib-metadata
typed-ast
zipp
(dependency ofimportlib-metadata
)
None of the removed dependencies was listed in pyproject.toml
.
What is the reason for that? importlib
seems to be a python builtin. Is it safe to commit such change? How can I determine potential problems?