From a023b279b16b4dfe0b9296b6589b5a4a9693ec6f Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Wed, 16 Oct 2024 17:33:37 -0700 Subject: [PATCH] Raise minimum supported macOS version to 10.12 Setting of `MACOSX_DEPLOYMENT_TARGET` exposed that some software cannot actually be built for 10.10, so bump to 10.12 (Sierra). --- metapkg/targets/macos/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metapkg/targets/macos/__init__.py b/metapkg/targets/macos/__init__.py index 1bd1032..3c46f57 100644 --- a/metapkg/targets/macos/__init__.py +++ b/metapkg/targets/macos/__init__.py @@ -276,7 +276,7 @@ def min_supported_version(self) -> str: if self.machine_architecture_alias == "arm64": return "10.15" else: - return "10.10" + return "10.12" def get_package_repository(self) -> MacOSRepository: repo = MacOSRepository("macos")