Fix hyphen-bug in gradio cc publish (#7229)

* Fix hyphen-bug

* add changeset

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Freddy Boulton 2024-01-31 10:33:13 -08:00 committed by GitHub
parent 59b9715f82
commit 6a7e98bfef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": patch
---
feat:Fix hyphen-bug in gradio cc publish

View File

@ -141,7 +141,7 @@ def _publish(
]
wheel_file = max(
(p for p in distribution_files if p.suffix == ".whl"),
key=lambda s: semantic_version.Version(str(s).split("-")[1]),
key=lambda s: semantic_version.Version(str(s.name).split("-")[1]),
)
if not wheel_file:
raise ValueError(