publish: simplify twine_files code (#7058)

* publish: simplify twine_files code

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Aarni Koskela 2024-01-18 18:15:45 +02:00 committed by GitHub
parent 9201f86450
commit 3642b7ac93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 15 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": minor
---
feat:publish: simplify twine_files code

View File

@ -173,21 +173,11 @@ def _publish(
try:
# do our best to only upload the latest versions
max_version = _get_max_version(distribution_files)
if not max_version:
# Have to write it in this awkward way cause ruff doesn't like lambdas
# and black doesn't like two functions with the same name
def predicate_(p):
return True
twine_files = [str(p) for p in distribution_files if predicate_(p)]
else:
def predicate(p):
return max_version in p.name
twine_files = [str(p) for p in distribution_files if predicate(p)]
twine_files = [
str(p)
for p in distribution_files
if (not max_version or max_version in p.name)
]
print(f"Uploading files: {','.join(twine_files)}")
twine_upload(twine_settings, twine_files)
except Exception: