-
Notifications
You must be signed in to change notification settings - Fork 103
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
Add support for pip hash checking #629
Conversation
✅ Deploy Preview for conda-lock ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Thanks so much @sfinkens for all your work on this! I like your approach.
|
and I was wondering if that logic could be delegated to the corresponding dependency classes
We couldn't get rid of the |
Regarding 4. I find the |
Good point! 👍 |
Description
Fix #624 by
--hash
option in the requirement parser, for exampleQuestions
Is this going into the right direction? And some more specific questions:
pypi_solver.py
(PoetryDependency
not having theget_hash_model
method). I agree with mypy that the solution is not really consistent, because some dependencies still carry the hash in their URL. MaybePoetryURLDependency
andPoetryVCSDependency
could be extended with aget_hash_model
method as well?