How to override config values for specific os + arch combos ? #2595
-
I've been trying to set the [[tool.cibuildwheel.overrides]]
select = "*-macosx_*_x86_64*"
inherit.environment = "append"
environment = {MACOSX_DEPLOYMENT_TARGET="13.0"}
[[tool.cibuildwheel.overrides]]
select = "*-macosx_*_arm64*"
inherit.environment = "append"
environment = {MACOSX_DEPLOYMENT_TARGET="14.0"} it seems however that both overrides are completely ignored and both builds fail with
are my selectors never matching anything ? Is my mental model of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Did you define the environment variable in your workflow file? I, personally, use an entry like this: [[tool.cibuildwheel.overrides]]
select = "*-macosx*arm64"
environment = { MACOSX_DEPLOYMENT_TARGET="11.0"} |
Beta Was this translation helpful? Give feedback.
-
I made sure I didn't. I'm specifically trying to move as much configuration as possible from a workflow file to |
Beta Was this translation helpful? Give feedback.
Did you define the environment variable in your workflow file?
I, personally, use an entry like this: