Skip to content

Commit

Permalink
Set SYSTEM_VERSION_COMPAT=0 during pip install on macos (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Feb 28, 2024
1 parent 554726e commit 1fea714
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion cibuildwheel/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,10 +586,21 @@ def build(options: Options, tmp_path: Path) -> None:
env=virtualenv_env,
)

# setting virtualenv_env used for pip install wheel
# set SYSTEM_VERSION_COMPAT=0 to ensure x86_64 cp38 python on
# arm64 runner can get correct macos version and allow installation
# of wheels with MACOSX_DEPLOYMENT_TARGET >= 11.0
# https://github.com/pypa/cibuildwheel/issues/1767
virtualenv_env_install_wheel = virtualenv_env.copy()
virtualenv_env_install_wheel["SYSTEM_VERSION_COMPAT"] = "0"

# test the wheel
if build_options.test_requires:
call_with_arch(
"pip", "install", *build_options.test_requires, env=virtualenv_env
"pip",
"install",
*build_options.test_requires,
env=virtualenv_env_install_wheel,
)

# run the tests from a temp dir, with an absolute path in the command
Expand Down

0 comments on commit 1fea714

Please sign in to comment.