-
Notifications
You must be signed in to change notification settings - Fork 34
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 reject of valid state in criteria compatibility check #111
Merged
uranusjr
merged 23 commits into
sarugaku:master
from
sanderr:issue/91-criteria-compatibility-check-fix
Nov 16, 2022
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
8931c6d
added extended test and applied PoC fix
sanderr 0d8faa9
Merge branch 'master' into issue/91-criteria-compatibility-check-fix
sanderr 568fc6d
cleaned up fix
sanderr 525b8c2
todo
sanderr 47f1e6c
fixed nondeterminism
sanderr 7586575
fixed too greedy trimming
sanderr dabe77d
fixed failing test
sanderr 1809154
todo
sanderr 8232a17
cleaned up test case
sanderr 469e1e5
todos
sanderr 41ceb33
black
sanderr 8e4d2c4
pep8
sanderr a25f3bc
lint
sanderr 85c9ce9
old python compatibility
sanderr 65fa410
nitpicks
sanderr 70c9567
Update src/resolvelib/resolvers.py
sanderr 5e85621
Update src/resolvelib/resolvers.py
sanderr 7e841f8
pep8
sanderr cc1c220
added news fragment
sanderr ad9eaca
removed TODO
sanderr 20df2c8
use packaging instead of setuptools
sanderr 6e9cf49
pep8
sanderr 546a11f
added Resolution to type stub
sanderr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Some valid states that were previously rejected are now accepted. This affects | ||
states where multiple candidates for the same dependency conflict with each | ||
other. The ``information`` argument passed to | ||
``AbstractProvider.get_preference`` may now contain empty iterators. This has | ||
always been allowed by the method definition but it was previously not possible | ||
in practice. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied this from another tuple at the top of the file.