-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Fix issue with installing dependencies with extras & hashes #9995
Conversation
Re-initialiting CI |
@di How about marking the test as |
Could a maintainer or contributor point me in the right direction here? Is this an issue in the resolver itself, outside the resolver, etc? Any leads would be helpful for me figure out where to start with fixing this. |
This is not strictly a resolver issue, but you’ll need to make changes to the resolver implementation so user-specified hashes and extras pass through it into the hash-checking component to satisfy the check. I believe the exception is raised during So to fix the issue, you’ll need to find out where the user-specified hashes are dropped and not correctly passed to the |
Hey, look at that, the failing test is now passing 🙂 |
Adds a test for #9644.
Fixes #9644.