Skip to content
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

Accelerate locking by fetching hash from url fragment #4500

Merged
merged 12 commits into from
Oct 28, 2020
Prev Previous commit
Fix release tuple construction
  • Loading branch information
frostming committed Oct 28, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4f4de7bcfe59a67fc468068c1ce6cb14ace5c6a0
2 changes: 1 addition & 1 deletion tests/pytest-pypi/pytest_pypi/app.py
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ def add_release(self, path_to_binary):
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):