mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix release tuple construction
This commit is contained in:
@@ -97,7 +97,7 @@ class Package(object):
|
||||
with open(path_to_binary + ".sha256") as f:
|
||||
hash_value = f.read().strip()
|
||||
self.releases[release] = ReleaseTuple(path_to_binary, requires_python, hash_value)
|
||||
self._package_dirs.add(ReleaseTuple(path, requires_python))
|
||||
self._package_dirs.add(ReleaseTuple(path, requires_python, hash_value))
|
||||
|
||||
|
||||
class Artifact(object):
|
||||
|
||||
Reference in New Issue
Block a user