Skip to content

Commit

Permalink
remove migrators_dir check
Browse files Browse the repository at this point in the history
this does not do anything
see #2812 (comment)
  • Loading branch information
ytausch committed Jul 25, 2024
1 parent fc0e7de commit 37809fa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions conda_forge_tick/auto_tick.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,9 @@ def _run_rerender(
changed_files = git_cli.diffed_files(context.local_clone_dir, "HEAD~")

recipe_dir = context.local_clone_dir / "recipe"
migrators_dir = context.local_clone_dir / "migrators"

nontrivial_migration_yaml_changes = any(
not file.is_relative_to(recipe_dir)
and not file.is_relative_to(migrators_dir)
and not file.name.startswith("README")
not file.is_relative_to(recipe_dir) and not file.name.startswith("README")
for file in changed_files
)

Expand Down

0 comments on commit 37809fa

Please sign in to comment.