-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
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
Dependency of extra packages is not installed #4912
Comments
I can't reproduce this, not sure what the underlying difference is, log may help: Updating dependencies Writing lock file Finding the necessary packages for the current system Package operations: 17 installs, 0 updates, 0 removals • Installing zipp (3.6.0) |
Looks like this is a non issue on master. $ poetry add pelican[markdown]
...
$ poetry export --without-hashes | grep importlib
importlib-metadata==4.11.4 ; python_version >= "3.9" and python_version < "3.10" |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option).Issue
Poetry does not install the dependency of an optional dependency. For example:
The dependency(
importlib-metadata (>=4.4)
) of the optional packagemarkdown
is not installed. This can be verified by:Using
pip install pelican[markdown]
, the behavior is correct.The text was updated successfully, but these errors were encountered: