Skip to content

Commit 020dc20

Browse files
authoredNov 25, 2023
Also upload tarballs in release.py (#674)
1 parent a079c96 commit 020dc20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def download_artifacts_github_actions(session, token, run_url):
6464
)
6565
with zipfile.ZipFile(io.BytesIO(response.content)) as z:
6666
for name in z.namelist():
67-
if not name.endswith(".whl"):
67+
if not name.endswith((".whl", ".tar.gz")):
6868
continue
6969
p = z.open(name)
7070
out_path = os.path.join(

0 commit comments

Comments
 (0)
Please sign in to comment.