Skip to content

Commit

Permalink
add missing config argument to _get_or_render_metadata
Browse files Browse the repository at this point in the history
_get_or_render_metadata is called from two sites, but when called from
_buildable, the config argument was not passed along.

Fixes conda-forge#28445
  • Loading branch information
d70-t committed Dec 5, 2024
1 parent eba9275 commit 8bf4cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci_support/compute_build_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def _buildable(name, version, recipes_dir, worker, config, finalize):
packagename_re.match(dirname)))
metadata_tuples = [m for path in likely_dirs
for (m, _, _) in _get_or_render_metadata(os.path.join(recipes_dir,
path), worker, finalize=finalize)]
path), worker, config=config, finalize=finalize)]

# this is our target match
ms = MatchSpec(" ".join([name, _fix_any(version, config)]))
Expand Down

0 comments on commit 8bf4cc3

Please sign in to comment.