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
8 changes: 4 additions & 4 deletions conda_forge_tick/migrators/arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _filter_stubby_and_ignored_nodes(graph, ignored_packages):


class ArchRebuild(GraphMigrator):
"""A Migrator that adds aarch64 and ppc64le builds to feedstocks."""
"""A Migrator that adds aarch64 builds to feedstocks."""

allowed_schema_versions = {0, 1}
migrator_version = 1
Expand All @@ -84,12 +84,12 @@ class ArchRebuild(GraphMigrator):
}
arches = {
"linux_aarch64": "default",
"linux_ppc64le": "default",
}

def __init__(
self,
graph: nx.DiGraph | None = None,
# do not change the name, but this doesn't actually add ppc anymore
name: str = "aarch64 and ppc64le addition",
pr_limit: int = 0,
piggy_back_migrations: Sequence[MiniMigrator] | None = None,
Expand Down Expand Up @@ -186,7 +186,7 @@ def migrate(
return muid

def pr_title(self, feedstock_ctx: FeedstockContext) -> str:
title = "Arch Migrator"
title = "Linux aarch64 Migrator"
branch = feedstock_ctx.attrs.get("branch", "main")
if branch not in ["main", "master"]:
return f"[{branch}] " + title
Expand All @@ -200,7 +200,7 @@ def pr_body(
body = body.format(
dedent(
"""\
This feedstock is being rebuilt as part of the aarch64/ppc64le migration.
This feedstock is being rebuilt as part of the aarch64 migration.

**Feel free to merge the PR if CI is all green, but please don't close it
without reaching out the the ARM migrators first at <code>@</code>conda-forge/arm-arch.**
Expand Down
Loading