Skip to content

Commit bbbdc44

Browse files
authored
Merge branch 'main' into main
2 parents b6d55d6 + c16b040 commit bbbdc44

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

MAVSDK_SERVER_VERSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
v0.35.1
2+
3+
4+

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ def platform_suffix(self):
5454
"""
5555
if sys.platform.startswith('linux') and 'MAVSDK_SERVER_ARCH' in os.environ:
5656
if os.environ['MAVSDK_SERVER_ARCH'] == "armv6l":
57-
return 'musl_armv6'
57+
return 'linux-armv6-musl'
5858
elif os.environ['MAVSDK_SERVER_ARCH'] == "armv7l":
59-
return 'musl_armv7'
59+
return 'linux-armv7l-musl'
6060
elif os.environ['MAVSDK_SERVER_ARCH'] == "aarch64":
61-
return 'musl_aarch64'
61+
return 'linux-arm64-musl'
6262
else:
6363
raise NotImplementedError(
6464
f"Error: unknown MAVSDK_SERVER_ARCH: {os.environ['MAVSDK_SERVER_ARCH']}")

0 commit comments

Comments
 (0)