diff --git a/scripts/addons_core/bl_pkg/bl_extension_ops.py b/scripts/addons_core/bl_pkg/bl_extension_ops.py index f3d7d2bc7b5..9124cb1a831 100644 --- a/scripts/addons_core/bl_pkg/bl_extension_ops.py +++ b/scripts/addons_core/bl_pkg/bl_extension_ops.py @@ -951,7 +951,8 @@ def _extensions_wheel_filter_for_platform(wheels): # FIXME: `macosx_11.00` should be `macosx_11_0`. platform_tag.startswith("macosx_") and # Ignore the MACOSX version, ensure `arm64` suffix. - platform_tag.endswith("_" + platform_tag_current.rpartition("_")[2]) + (platform_tag.endswith("_" + platform_tag_current.rpartition("_")[2]) or + platform_tag.endswith("_universal2")) ): pass elif platform_tag_current.startswith("linux_") and (