Skip to content

Commit

Permalink
adjust import
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Sep 24, 2024
1 parent 88657ed commit a71fc11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_forge_tick/migrators/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from conda_forge_tick.lazy_json_backends import LazyJson
from conda_forge_tick.make_graph import make_outputs_lut_from_graph
from conda_forge_tick.path_lengths import cyclic_topological_sort
from conda_forge_tick.update_recipe import update_build_number, v2
from conda_forge_tick.update_recipe import update_build_number, v1
from conda_forge_tick.utils import (
frozen_to_json_friendly,
get_bot_run_url,
Expand Down Expand Up @@ -571,7 +571,7 @@ def set_build_number(self, filename: str | Path) -> None:
"""
filename = Path(filename)
if filename.name == "recipe.yaml":
filename.write_text(v2.update_build_number(filename, self.new_build_number))
filename.write_text(v1.update_build_number(filename, self.new_build_number))
else:
raw = filename.read_text()

Expand Down

0 comments on commit a71fc11

Please sign in to comment.