From 9928036330c090c47c817e8d025a91222ec46cd2 Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Sun, 21 Apr 2024 15:11:39 -0700 Subject: [PATCH] Specify OSX deployment target for python package. (#3193) Summary: . Differential Revision: D56403324 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 26824826d96..c8ba87ab517 100644 --- a/setup.py +++ b/setup.py @@ -364,6 +364,7 @@ def run(self): # useful error information to users. "-DEXECUTORCH_ENABLE_LOGGING=ON", "-DEXECUTORCH_LOG_LEVEL=Info", + "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13", ] build_args = [f"-j{self.parallel}"]