Skip to content

Commit

Permalink
Trying to fix macos-arm64 job.
Browse files Browse the repository at this point in the history
Set MACOS_DEPLOYMENT_TARGET to 11.0.
  • Loading branch information
rturrado committed Jan 17, 2024
1 parent b6a5574 commit 59b6d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def finalize_options(self):
class bdist_wheel(_bdist_wheel):
def run(self):
if platform.system() == "Darwin":
os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
os.environ['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
_bdist_wheel.run(self)
impl_tag, abi_tag, plat_tag = self.get_tag()
archive_basename = "{}-{}-{}-{}".format(self.wheel_dist_name, impl_tag, abi_tag, plat_tag)
Expand Down

0 comments on commit 59b6d42

Please sign in to comment.