From 97bf169ed2a4d9ff02a5e38c4cb343118e4d77ba Mon Sep 17 00:00:00 2001 From: beckermr Date: Thu, 13 Jun 2024 07:49:46 -0500 Subject: [PATCH] BUG only look at cross for build vs host --- conda_forge_feedstock_check_solvable/check_solvable.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/conda_forge_feedstock_check_solvable/check_solvable.py b/conda_forge_feedstock_check_solvable/check_solvable.py index e4b6349..b579808 100644 --- a/conda_forge_feedstock_check_solvable/check_solvable.py +++ b/conda_forge_feedstock_check_solvable/check_solvable.py @@ -382,11 +382,7 @@ def _is_recipe_solvable_on_platform( | host_rx["strong_constrains"] ) - pin_compat_req = ( - (host_req or []) - if m.is_cross and not m.build_is_host - else (build_req or []) - ) + pin_compat_req = (host_req or []) if m.is_cross else (build_req or []) run_constrained = apply_pins( run_constrained, host_req or [], build_req or [], outnames, m