From a7a9ab3c190d84f28830816fb88a1be0824bf333 Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Sun, 21 Apr 2024 20:17:38 -0700 Subject: [PATCH] Specify OSX deployment target for python package. (#3194) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/3194 overriding_review_checks_triggers_an_audit_and_retroactive_review Oncall Short Name: executorch Differential Revision: D56405473 fbshipit-source-id: 785709e8acc1b07e57825b278c3e0a355641e13a --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8ba87ab51..09d1a3a64e 100644 --- a/setup.py +++ b/setup.py @@ -364,7 +364,7 @@ def run(self): # useful error information to users. "-DEXECUTORCH_ENABLE_LOGGING=ON", "-DEXECUTORCH_LOG_LEVEL=Info", - "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13", + "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15", ] build_args = [f"-j{self.parallel}"]