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

Enable hash checking again (currently hashes from lock file are not validated at all) #113

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ensure list of files is cloned
  • Loading branch information
FlorianLudwig committed Nov 26, 2020
commit 498ba71bde9bce56b4d33a0ea99dfb5510d4ca32
1 change: 1 addition & 0 deletions poetry/core/packages/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ def clone(self): # type: () -> "Package"
clone.extras = self.extras
clone.root_dir = self.root_dir
clone.develop = self.develop
clone.files = self.files
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This appears to be the "secret sauce" to get signature verification working.


for dep in self.requires:
clone.requires.append(dep)
Expand Down