diff --git a/comfy/model_management.py b/comfy/model_management.py index 855e89112..fd493aff0 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -896,7 +896,7 @@ def force_upcast_attention_dtype(): upcast = args.force_upcast_attention try: macos_version = tuple(int(n) for n in platform.mac_ver()[0].split(".")) - if (14, 5) <= macos_version <= (15, 0, 1): # black image bug on recent versions of macOS + if (14, 5) <= macos_version <= (15, 2): # black image bug on recent versions of macOS upcast = True except: pass