From e8335a83e8fb5a106ab3e8dc4b6334ca02ec7ae2 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 12 Dec 2024 16:48:15 +0900 Subject: [PATCH] try --- CI/osx.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CI/osx.py b/CI/osx.py index d107d28d..c6fa9bd5 100644 --- a/CI/osx.py +++ b/CI/osx.py @@ -29,12 +29,11 @@ def prepare_params(self, params): params["command"] = bash_command(*command) env = params.setdefault("env", {}) dev = env.setdefault( - "DEVELOPER_DIR", "/Applications/Xcode_14.3.1.app/Contents/Developer" + "DEVELOPER_DIR", "/Applications/Xcode_15.0.1.app/Contents/Developer" ) env.setdefault( "SDKROOT", - "{}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk".format( - "/Applications/Xcode_15.0.1.app/Contents/Developer"), + "{}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk".format(dev), ) return params