Skip to content

Fix mirror script to handle newer metadata format. #10050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 20, 2024
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
11 changes: 10 additions & 1 deletion scripts/create-python-mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@ def collect_metadata_from_git_history() -> List[Dict]:
return metadata


def check_arch(entry, arch):
"""Checks whether arch entry in metadata matches the provided filter."""
if isinstance(entry, str):
return entry == arch
elif isinstance(entry, dict) and "family" in entry:
return entry["family"] == arch
return False


def filter_metadata(
metadata: List[Dict], name: Optional[str], arch: Optional[str], os: Optional[str]
) -> List[Dict]:
Expand All @@ -97,7 +106,7 @@ def filter_metadata(
entry
for entry in metadata
if (not name or entry["name"] == name)
and (not arch or entry["arch"] == arch)
and (not arch or check_arch(entry["arch"], arch))
and (not os or entry["os"] == os)
]
# Use a set to ensure unique URLs
Expand Down
Loading