CI: add missing config argument to _get_or_render_metadata #28461
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Within
.ci_support/compute_build_graph.py
,_get_or_render_metadata
is called from two sites, but when called from_buildable
, theconfig
argument was not passed along. Apparently, it's not possible to build multiple interdependentnoarch: python
packages in one PR without thisconfig
argument, but the build seems to work when applying the change as proposed in this PR.I have to admit, that I'm new to conda-forge and didn't yet understand what exactly is passed along in this
config
argument, but I guessed that thepython_min
variable would be part of it.I also have to admit, that I don't know if a PR to this repo would actually be the right way to fix this issue, I'd be glad for some guidelines if there'd be a better place.
Fixes #28445