Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/sconsUtils/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.13"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that we probably should also use the env var if we know we are in a conda environment (since it is set by conda).



def _initVariables():
Expand Down