Skip to content

Commit

Permalink
Also upload tarballs in release.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored Nov 24, 2023
1 parent a079c96 commit f95fe34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def download_artifacts_github_actions(session, token, run_url):
)
with zipfile.ZipFile(io.BytesIO(response.content)) as z:
for name in z.namelist():
if not name.endswith(".whl"):
if not name.endswith((".whl", ".tar.gz")):
continue
p = z.open(name)
out_path = os.path.join(
Expand Down

0 comments on commit f95fe34

Please sign in to comment.