Skip to content

Commit 4fb5ffd

Browse files
authored
Merge pull request mavlink#95 from mavlink/add-darwin-setup.py
add macos to setup.py
2 parents dcc30db + 21107a4 commit 4fb5ffd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ def platform_suffix(self):
5353
"""
5454
if sys.platform.startswith('linux'):
5555
return 'manylinux1-x64'
56+
elif sys.platform.startswith('darwin'):
57+
return 'macos'
5658
else:
5759
raise NotImplementedError(
5860
f"Platform {sys.platform} is not (yet) supported by this setup.py!")

0 commit comments

Comments
 (0)