Skip to content

Commit

Permalink
Raise minimum supported macOS version to 10.12
Browse files Browse the repository at this point in the history
Setting of `MACOSX_DEPLOYMENT_TARGET` exposed that some software cannot
actually be built for 10.10, so bump to 10.12 (Sierra).
  • Loading branch information
elprans committed Oct 17, 2024
1 parent 1f1491d commit a023b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metapkg/targets/macos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a023b27

Please sign in to comment.