Skip to content
Merged
Changes from all commits
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
7 changes: 2 additions & 5 deletions scripts/release_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path

PROJECT_NAME = "itzi-core"
EXPECTED_WHEEL_COUNT = 18
EXPECTED_WHEEL_COUNT = 21


def version_from_tag(tag: str) -> str:
Expand All @@ -33,10 +33,7 @@ def verify_artifacts(dist: Path, tag: str) -> None:
if len(sdists) != 1:
raise SystemExit(f"Expected one sdist, found {len(sdists)}: {sdists}")
if len(wheels) != EXPECTED_WHEEL_COUNT:
raise SystemExit(
"Expected ten wheels (CPython 3.12 and 3.13 on each of seven platforms), "
f"found {len(wheels)}: {wheels}"
)
raise SystemExit(f"Expected {EXPECTED_WHEEL_COUNT} wheels, found {len(wheels)}: {wheels}")

with tarfile.open(sdists[0]) as archive:
pyproject = next(
Expand Down
Loading