Skip to content
Snippets Groups Projects
Commit f372eb86 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch 'issue-70' into 'master'

Temporary fix to issue #70

See merge request !206
parents 0e5024c7 f9895d78
No related branches found
No related tags found
1 merge request!206Temporary fix to issue #70
Pipeline #47495 passed
......@@ -299,8 +299,12 @@ def parse_dependencies(recipe_dir, config):
metadata = get_rendered_metadata(recipe_dir, config)
recipe = get_parsed_recipe(metadata)
build_requirements = remove_pins(recipe["requirements"].get("build", []))
# causes conflicts on macOS
if "llvm-tools" in build_requirements:
build_requirements.remove("llvm-tools")
return (
remove_pins(recipe["requirements"].get("build", []))
build_requirements
+ remove_pins(recipe["requirements"].get("host", []))
+ recipe["requirements"].get("run", [])
+ recipe.get("test", {}).get("requires", [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment