From 52f94c24f4c36475bc135049924f0b66a7f50997 Mon Sep 17 00:00:00 2001 From: Jonas Vautherin Date: Mon, 4 Jan 2021 12:32:37 +0100 Subject: [PATCH 1/2] Bump mavsdk_server to v0.35.0 --- MAVSDK_SERVER_VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAVSDK_SERVER_VERSION b/MAVSDK_SERVER_VERSION index 605c095d..ab4e51c6 100644 --- a/MAVSDK_SERVER_VERSION +++ b/MAVSDK_SERVER_VERSION @@ -1 +1 @@ -v0.34.0 +v0.35.0 From 022078026da36f58fa6e6697d80f199ae1bbcb7f Mon Sep 17 00:00:00 2001 From: Jonas Vautherin Date: Mon, 4 Jan 2021 12:30:47 +0100 Subject: [PATCH 2/2] Update mavsdk_server suffix following changes in MAVSDK repo --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9e7bfc15..9485f5a9 100644 --- a/setup.py +++ b/setup.py @@ -54,11 +54,11 @@ def platform_suffix(self): """ if sys.platform.startswith('linux') and 'MAVSDK_SERVER_ARCH' in os.environ: if os.environ['MAVSDK_SERVER_ARCH'] == "armv6l": - return 'musl_armv6' + return 'linux-armv6-musl' elif os.environ['MAVSDK_SERVER_ARCH'] == "armv7l": - return 'musl_armv7' + return 'linux-armv7l-musl' elif os.environ['MAVSDK_SERVER_ARCH'] == "aarch64": - return 'musl_aarch64' + return 'linux-arm64-musl' else: raise NotImplementedError( f"Error: unknown MAVSDK_SERVER_ARCH: {os.environ['MAVSDK_SERVER_ARCH']}")