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: 4 additions & 0 deletions run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,10 @@ def wait_for_build_release(db: ReleaseShelf) -> None:
downloads_path / f"python-{release_tag}-{arch}-linux-android.tar.gz"
for arch in ["aarch64", "x86_64"]
]
if release_tag.as_tuple() >= (3, 15):
wait_for_paths.append(
downloads_path / f"Python-{release_tag}-iOS-XCframework.tar.gz"
Comment thread
savannahostrowski marked this conversation as resolved.
Outdated
)
if should_wait_for_docs:
docs_path = release_path / "docs"
docs_path.mkdir(parents=True, exist_ok=True)
Expand Down
Loading