build: Bump minimum supported macOS to 13.0

Running Bitcoin Core on unsupported OSes may expose users to security
issues.

macOS Monterey 12 received its final security update (12.7.6) on July
2024. Apple classifies the hardware that can run macOS 12 at most as
"obsolete worldwide".
This commit is contained in:
Hennadii Stepanov
2024-10-07 14:10:32 +01:00
parent 48cf3da636
commit a0e089a71d
6 changed files with 5 additions and 7 deletions

View File

@@ -235,7 +235,7 @@ def check_MACHO_libraries(binary) -> bool:
return ok
def check_MACHO_min_os(binary) -> bool:
if binary.build_version.minos == [11,0,0]:
if binary.build_version.minos == [13,0,0]:
return True
return False