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.
2 parents 27a7e60 + 0220780 commit c16b040Copy full SHA for c16b040
MAVSDK_SERVER_VERSION
@@ -1 +1 @@
1
-v0.34.0
+v0.35.0
setup.py
@@ -54,11 +54,11 @@ def platform_suffix(self):
54
"""
55
if sys.platform.startswith('linux') and 'MAVSDK_SERVER_ARCH' in os.environ:
56
if os.environ['MAVSDK_SERVER_ARCH'] == "armv6l":
57
- return 'musl_armv6'
+ return 'linux-armv6-musl'
58
elif os.environ['MAVSDK_SERVER_ARCH'] == "armv7l":
59
- return 'musl_armv7'
+ return 'linux-armv7l-musl'
60
elif os.environ['MAVSDK_SERVER_ARCH'] == "aarch64":
61
- return 'musl_aarch64'
+ return 'linux-arm64-musl'
62
else:
63
raise NotImplementedError(
64
f"Error: unknown MAVSDK_SERVER_ARCH: {os.environ['MAVSDK_SERVER_ARCH']}")
0 commit comments