We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4b97b commit 56a7a0bCopy full SHA for 56a7a0b
setup.py
@@ -54,7 +54,13 @@ def platform_suffix(self):
54
Trying to detect the platform to know which `mavsdk_server` executable to download
55
"""
56
if sys.platform.startswith('linux') and platform.machine() == "x86_64":
57
- return 'manylinux2010-x64'
+ return 'musl_x86_64'
58
+ elif sys.platform.startswith('linux') and platform.machine() == "armv6":
59
+ return 'musl_armv6'
60
+ elif sys.platform.startswith('linux') and platform.machine() == "armv7":
61
+ return 'musl_armv7'
62
+ elif sys.platform.startswith('linux') and platform.machine() == "aarch64":
63
+ return 'musl_aarch64'
64
elif sys.platform.startswith('darwin'):
65
return 'macos'
66
elif sys.platform.startswith('win'):
0 commit comments