Skip to content

Commit 4cefc51

Browse files
add sequoia to os versions #7407
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 19f63cd commit 4cefc51

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/api/python/setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,12 @@ def finalize_options(self):
263263
("win", "x86"): "win32",
264264
("osx", "x64"): f"macosx_{os_version_tag}_x86_64",
265265
("osx", "arm64"): f"macosx_{os_version_tag}_arm64",
266+
("darwin", "x86_64"): f"macosx_{os_version_tag}_x86_64",
267+
("darwin", "x64"): f"macosx_{os_version_tag}_x86_64",
268+
("darwin", "arm64"): f"macosx_{os_version_tag}_arm64",
269+
("sequoia", "x64"): f"macosx_{os_version_tag}_x86_64",
270+
("sequoia", "x86_64"): f"macosx_{os_version_tag}_x86_64",
271+
("sequoia", "xarm64"): f"macosx_{os_version_tag}_arm64",
266272
} # type: dict[tuple[str, str], str]
267273
self.plat_name = TAGS[(BUILD_PLATFORM, BUILD_ARCH)]
268274
return super().finalize_options()

0 commit comments

Comments
 (0)