From e4621d7c53fba9cd4173870d6e6220ae81c208d4 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 30 May 2024 10:06:41 +1000 Subject: [PATCH 1/2] test 10.9 - 10.12 in state.py --- python/lsst/sconsUtils/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/sconsUtils/state.py b/python/lsst/sconsUtils/state.py index 6db5b35..e46985f 100644 --- a/python/lsst/sconsUtils/state.py +++ b/python/lsst/sconsUtils/state.py @@ -152,7 +152,7 @@ def _get_macosx_deployment_target_default(): uname = os.uname() if uname.sysname == "Darwin" and uname.machine == "arm64": return "11.0" - return "10.9" + return "10.12" def _initVariables(): From 24be355acd9fa6aebc82e2dcc7d6304fe9bdb950 Mon Sep 17 00:00:00 2001 From: Kian-Tat Lim Date: Fri, 2 Aug 2024 22:04:26 -0700 Subject: [PATCH 2/2] Bump the default MACOSX_DEPLOYMENT_TARGET. --- python/lsst/sconsUtils/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/sconsUtils/state.py b/python/lsst/sconsUtils/state.py index e46985f..c4103d0 100644 --- a/python/lsst/sconsUtils/state.py +++ b/python/lsst/sconsUtils/state.py @@ -152,7 +152,7 @@ def _get_macosx_deployment_target_default(): uname = os.uname() if uname.sysname == "Darwin" and uname.machine == "arm64": return "11.0" - return "10.12" + return "10.13" def _initVariables():