Skip to content

Commit

Permalink
add PyPIOrgMigrator as piggyback to version migrator
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Nov 23, 2024
1 parent 569991a commit f5d7777
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conda_forge_tick/make_migrators.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ def add_rebuild_migration_yaml(
CrossCompilationForARMAndPower(),
MPIPinRunAsBuildCleanup(),
PyPIOrgMigrator(),
StdlibMigrator(),
]
if migration_name == "qt515":
piggy_back_migrations.append(QtQtMainMigrator())
Expand All @@ -306,9 +307,6 @@ def add_rebuild_migration_yaml(
piggy_back_migrations.append(RUCRTCleanup())
if migration_name.startswith("flang19"):
piggy_back_migrations.append(FlangMigrator())
# stdlib migrator runs on top of ALL migrations, see
# https://github.com/conda-forge/conda-forge.github.io/issues/2102
piggy_back_migrations.append(StdlibMigrator())
cycles = set()
for cyc in nx.simple_cycles(total_graph):
cycles |= set(cyc)
Expand Down Expand Up @@ -764,6 +762,7 @@ def initialize_migrators(
PipWheelMigrator(),
MPIPinRunAsBuildCleanup(),
DependencyUpdateMigrator(python_nodes),
PyPIOrgMigrator(),
StdlibMigrator(),
],
)
Expand Down

0 comments on commit f5d7777

Please sign in to comment.