You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pkg_resources.DistributionNotFound: The'cryptography>=1.3.4; extra == "security"'distributionwasnotfoundandisrequiredbyrequests
The above error led us to conclude that for some reason, requests[security] was not getting satisfied as expected.
It would mean a lot to us if someone could please shed some light on whether this is a manifestation of pypa/pip#3189 and pypa/pip#3198 or simply a quirk in our understanding of how extra dependencies are resolved! Thanks! :)
The text was updated successfully, but these errors were encountered:
Since you're using pip to install the packages and since the issue you're experiencing seems to match closely with the reported issue and fix, I think your instinct is right that there's nothing involving setuptools here. Perhaps you should try installing the pip from the repo and see if that addresses your concern, and if not, report an issue with pip.
A similar issue was reported and fixed here for
pip
.In our case:
zulip_bots
package that depends onrequests
andsimple_salesforce
.simple_salesforce
further depends onrequests[security]
.zulip_bots
package also depends on thezulip
package in the same repo which also depends on/installsrequests
. So, it is clear thatrequests
does get installed whether you installzulip
orzulip_bots
.zulip
andzulip_bots
packages.zulip_bots
package), we ran into:The above error led us to conclude that for some reason,
requests[security]
was not getting satisfied as expected.It would mean a lot to us if someone could please shed some light on whether this is a manifestation of pypa/pip#3189 and pypa/pip#3198 or simply a quirk in our understanding of how extra dependencies are resolved! Thanks! :)
The text was updated successfully, but these errors were encountered: