Skip to content

Commit

Permalink
Merge pull request #98 from NTIA/fix-sigmf-extension-version-format
Browse files Browse the repository at this point in the history
X.Y.Z instead of vX.Y.Z for SigMF extension versions
  • Loading branch information
dboulware authored Dec 1, 2023
2 parents 1884da7 + 2f3ffec commit d0182f2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scos_actions/metadata/sigmf_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
],
Expand Down

0 comments on commit d0182f2

Please sign in to comment.