-
Notifications
You must be signed in to change notification settings - Fork 311
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
Prints the packages that will be uploaded when using the --verbose option #652
Prints the packages that will be uploaded when using the --verbose option #652
Conversation
Please fix your failing tests https://travis-ci.org/github/pypa/twine/builds/695224649 and clean up your commit history on the branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this, and providing the screenshot.
I also agree re: a clean commit history. Here are some resources:
9b10a33
to
a3ec4c1
Compare
d51d02f
to
5775bbc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good progress! I left a lot of comments, but I think it's mostly polishing up your work.
I added the changes suggested by @bhrutledge, thanks for the help. I wasn't sure what the appropriate docstring would be for the test_get_file_size function, currently it is |
b745b13
to
3954ad9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! I think this is functionally complete. I'm nit-picking the tests and code style, since we've spent a lot of time on that recently, and I think there are some useful tools and patterns to keep in mind.
I made the changes requested by @bhrutledge, thanks for the feedback. |
Added the changes requested by @bhrutledge : eb70d69 The changes that need to be made regarding signatures are still under discussion and I will add any changes to this PR if needed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for making those changes!
As discussed above, I changed the |
twine/commands/upload.py
Outdated
file_size = utils.get_file_size(filename) | ||
print(f" {filename} ({file_size})") | ||
print(f" {package.signed_filename} (Signature)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not ever package will have a signed filename. What happens here if it doesn't have a signature file? What does this print? Folks generating signatures should also know that a .asc
file is the signature, what are we hoping to communicate by putting (Signature)
at the end?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense, thanks for the feedback. Would you suggest printing the filename like the other files(without anything to indicate that its a signature)? I will also make this print conditional on upload_settings.sign or if its a pre-signed distribution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work. Almost there, I think.
I added the changes @bhrutledge requested.
Additionally I added a clause to check that the package signature will only be displayed if upload_settings.sign is true or if the distribution is pre-signed to address this issue that @sigmavirus24 pointed out. Thanks for the help. I also added tests to test _make_package and to check that upload prints signatures if appropriate. |
31116c4
to
d3d26df
Compare
…ages, size, and signatures
9ec7f3d
to
9bcb57e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @VikramJayanthi17. This looks good to me. @sigmavirus24 How about you?
print(f"Uploading distributions to {repository_url}") | ||
|
||
packages_to_upload = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to allocate a list here? Would it be better to create a generator and use that in the for-loop? I don't think that's a blocker, just food for thought for @VikramJayanthi17
@VikramJayanthi17 This was released in 3.2.0. Thanks again for your work on this. |
As per discussion in #381, twine now prints the names of the packages that it will attempt to upload when the
--verbose
option is selected. The example output below is from the terminal on my MacOs(Mojave) machine.This change was suggested by @bhrutledge as a simple first change to the
--verbose
option using the existing verbose pattern before more comprehensive changes are implemented using thestdlib
logging system.