From 2f3ffec07cf0a883c8e1ef0adc5a89468e475666 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Mon, 20 Nov 2023 14:50:58 -0500 Subject: [PATCH] X.Y.Z instead of vX.Y.Z for SigMF extension versions --- scos_actions/metadata/sigmf_builder.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scos_actions/metadata/sigmf_builder.py b/scos_actions/metadata/sigmf_builder.py index 2914096f..7a3bb4a9 100644 --- a/scos_actions/metadata/sigmf_builder.py +++ b/scos_actions/metadata/sigmf_builder.py @@ -13,41 +13,41 @@ # Global info which is ALWAYS true for SCOS-generated recordings GLOBAL_INFO = { - "core:version": "v1.0.0", + "core:version": "1.0.0", "core:extensions": [ { "name": "ntia-algorithm", - "version": "v2.0.1", + "version": "2.0.1", "optional": False, }, { "name": "ntia-core", - "version": "v2.0.0", + "version": "2.0.0", "optional": False, }, { "name": "ntia-diagnostics", - "version": "v1.1.2", + "version": "1.1.2", "optional": True, }, { "name": "ntia-environment", - "version": "v1.0.0", + "version": "1.0.0", "optional": True, }, { "name": "ntia-scos", - "version": "v1.0.0", + "version": "1.0.0", "optional": True, }, { "name": "ntia-sensor", - "version": "v2.0.0", + "version": "2.0.0", "optional": False, }, { "name": "ntia-nasctn-sea", - "version": "v0.6.0", + "version": "0.6.0", "optional": True, }, ],