Skip to content

Commit

Permalink
Merge pull request #2870 from regro/fix-defs
Browse files Browse the repository at this point in the history
fix: make sure container default is set correctly
  • Loading branch information
beckermr authored Jul 26, 2024
2 parents 215ce56 + 97f3d36 commit be39a73
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda_forge_tick/migration_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run_migration(
feedstock_name,
node_attrs,
default_branch,
use_container=True,
use_container=None,
**kwargs,
):
"""Run a migration against a feedstock.
Expand Down
2 changes: 1 addition & 1 deletion conda_forge_tick/provide_source_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


@contextmanager
def provide_source_code(recipe_dir, use_container=True):
def provide_source_code(recipe_dir, use_container=None):
"""Context manager to provide the source code for a recipe.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion conda_forge_tick/rerender_feedstock.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
logger = logging.getLogger(__name__)


def rerender_feedstock(feedstock_dir, timeout=900, use_container=True):
def rerender_feedstock(feedstock_dir, timeout=900, use_container=None):
"""Rerender a feedstock.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion conda_forge_tick/solver_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def is_recipe_solvable(
timeout=600,
verbosity=None,
build_platform=None,
use_container=True,
use_container=None,
):
"""Compute if a recipe is solvable.
Expand Down
2 changes: 1 addition & 1 deletion conda_forge_tick/update_upstream_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def get_latest_version(
name: str,
attrs: Mapping[str, Any],
sources: Iterable[AbstractSource],
use_container: bool = True,
use_container: bool | None = None,
) -> Dict[str, Union[Literal[False], str]]:
"""
Given a package, return the new version information to be written into the cf-graph.
Expand Down

0 comments on commit be39a73

Please sign in to comment.