Skip to content
forked from mesonbuild/meson
Merged
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 mesonbuild/dependencies/blas_lapack.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -526,7 +526,7 @@ def __init__(self, name: str, environment: 'Environment', kwargs: T.Dict[str, T.

def check_macOS_recent_enough(self) -> bool:
cmd = ['xcrun', '-sdk', 'macosx', '--show-sdk-version']
sdk_version = str(subprocess.run(cmd, capture_output=True, check=True).stdout)
sdk_version = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip()
return sdk_version >= '13.3'

def detect(self, kwargs: T.Dict[str, T.Any]) -> None:
Expand Down