Skip to content

Commit

Permalink
get it right
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmot committed Sep 3, 2024
1 parent d90b626 commit fd3a55d
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",
("osx", "x86_64"): f"macosx_{BUILD_OS_VERSION}_x86_64",
("osx", "x86_64"): f"macosx_{BUILD_OS_VERSION}_arm64",
("osx", "x64"): f"macosx_{BUILD_OS_VERSION}_x86_64",
("osx", "arm64"): 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 fd3a55d

Please sign in to comment.