-
Notifications
You must be signed in to change notification settings - Fork 290
Show origin of conflicting PyPI dependencies #3799
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
base: main
Are you sure you want to change the base?
Conversation
3626dbf
to
5dc4a43
Compare
5dc4a43
to
6577915
Compare
@tdejager after parsing |
Yeah good question. So what I can find from reading the code is that it depends on the Error if you get a We do have the PyPI Dependencies that come in through that function, which are essentially the dependencies that the user requests for that environment. However, that can also contain source dependencies which in turn may define a couple of dependencies. We could try making an improvent for the simple case first? The case that is also present in the issue I think :) |
The requirements and constraints that are given to
So the inputs to the resolver are already "linearized", i.e. I don't think it's possible to tell that I tried dumping out the contents of
Which, even though it lists |
Closes #3405.