Skip to content

Commit

Permalink
blargh
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmot committed Sep 3, 2024
1 parent c60452b commit d90b626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ def finalize_options(self):
# windows arm64 is not supported by pypi yet
("win", "x64"): "win_amd64",
("win", "x86"): "win32",
("darwin", "x86_64"): f"macosx_{BUILD_OS_VERSION}_x86_64",
("darwin", "x86_64"): f"macosx_{BUILD_OS_VERSION}_arm64",
("osx", "x86_64"): f"macosx_{BUILD_OS_VERSION}_x86_64",
("osx", "x86_64"): f"macosx_{BUILD_OS_VERSION}_arm64",
} # type: dict[tuple[str, str], str]
self.plat_name = TAGS[(BUILD_PLATFORM, BUILD_ARCH)]
return super().finalize_options()
Expand Down

0 comments on commit d90b626

Please sign in to comment.