Skip to content
Merged
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
4 changes: 3 additions & 1 deletion run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@
print(f"- Normalized release tag: {release_tag.normalized()}")
print(f"- Git repo: {self.db['git_repo']}")
print(f"- SSH username: {self.db['ssh_user']}")
print(f"- python.org API key: {self.db['auth_info']}")
user, key = self.db["auth_info"].split(":")
masked = "*" * (len(key) - 4) + key[-4:]
print(f"- python.org API key: {user}:{masked}")

Check warning on line 257 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L255-L257

Added lines #L255 - L257 were not covered by tests
print(f"- Sign with GPG: {self.db['sign_gpg']}")
print()

Expand Down
Loading