-
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
Release 1.1.6 #3905
Release 1.1.6 #3905
Conversation
Looks like we need to drop the |
@abn It should not fail since markers are present and correct. I'll investigate but for now I will hold off the release. |
@abn I think we are hitting a limit of the current resolver. And I don't see a simple solution to this issue. I am surprised we did not hit this sooner but basically the issue comes from these two dependencies: virtualenv = { version = "^20.0.26" }
pre-commit = { version = "^2.6", python = "^3.6.1" } The resolver chooses to resolve The resolver then resolves |
Well I may have a workaround it seems by prioritizing dependencies without markers first. This is not a silver bullet though and we might need to improve this part of the resolver. |
IIUC, sounds almost like the resolver needs to keep the resolution context around from the previous result. In this case, knowing that |
f32a5ca
to
d6af179
Compare
d6af179
to
db3481f
Compare
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixed