From 6b5cc7a0b94ea2bbfad626ba98a37dc6504dab12 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 13 Jun 2025 14:55:41 +0200 Subject: [PATCH] Set maturin macOS version to `14.5` --- apis/python/node/pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apis/python/node/pyproject.toml b/apis/python/node/pyproject.toml index 33048a3f..8636df49 100644 --- a/apis/python/node/pyproject.toml +++ b/apis/python/node/pyproject.toml @@ -22,3 +22,11 @@ extend-select = [ "D", # pydocstyle "UP", ] + +[tool.maturin.target.x86_64-apple-darwin] +# macOS deployment target SDK version +macos-deployment-target = "14.5" + +[tool.maturin.target.aarch64-apple-darwin] +# macOS deployment target SDK version +macos-deployment-target = "14.5"