Skip to content

Commit

Permalink
ignore_compatibility was supposed to default to False (#5926)
Browse files Browse the repository at this point in the history
* fix resolver as ignore_compatibility was supposed to default to False, collect hashes already passes True.
  • Loading branch information
matteius committed Sep 8, 2023
1 parent 1e07814 commit 9d470b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/5926.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore_compatibility was supposed to default to False (except for hash collection)
2 changes: 1 addition & 1 deletion pipenv/utils/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def package_finder(self):
)
return finder

def finder(self, ignore_compatibility=True):
def finder(self, ignore_compatibility=False):
finder = self.package_finder
index_lookup = self.prepare_index_lookup()
finder._link_collector.index_lookup = index_lookup
Expand Down

0 comments on commit 9d470b4

Please sign in to comment.