mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
@@ -0,0 +1 @@
|
||||
Make the order of hashes in resolution result stable.
|
||||
+1
-1
@@ -250,7 +250,7 @@ class Entry(object):
|
||||
entry_hashes = set(self.entry.hashes)
|
||||
locked_hashes = set(self.lockfile_entry.hashes)
|
||||
if entry_hashes != locked_hashes and not self.is_updated:
|
||||
self.entry_dict["hashes"] = list(entry_hashes | locked_hashes)
|
||||
self.entry_dict["hashes"] = sorted(entry_hashes | locked_hashes)
|
||||
self.entry_dict["name"] = self.name
|
||||
if "version" in self.entry_dict:
|
||||
self.entry_dict["version"] = self.strip_version(self.entry_dict["version"])
|
||||
|
||||
Reference in New Issue
Block a user