mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 06:46:15 +00:00
ignore_compatibility was supposed to default to False (#5926)
* fix resolver as ignore_compatibility was supposed to default to False, collect hashes already passes True.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ignore_compatibility was supposed to default to False (except for hash collection)
|
||||
@@ -337,7 +337,7 @@ class Resolver:
|
||||
)
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user