Skip to content

Commit

Permalink
Merge pull request #87 from NTIA/tagged-unions-processing-info
Browse files Browse the repository at this point in the history
SigMF-NS-NTIA Updates: ntia-algorithm v2.0.1, ntia-nasctn-sea v0.5.0
  • Loading branch information
aromanielloNTIA authored Aug 7, 2023
2 parents c7059ed + ec88705 commit 09e4a87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scos_actions/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "6.3.1"
__version__ = "6.3.2"
4 changes: 2 additions & 2 deletions scos_actions/metadata/sigmf_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"core:extensions": [
{
"name": "ntia-algorithm",
"version": "v2.0.0",
"version": "v2.0.1",
"optional": False,
},
{
Expand Down Expand Up @@ -47,7 +47,7 @@
},
{
"name": "ntia-nasctn-sea",
"version": "v0.4.0",
"version": "v0.5.0",
"optional": True,
},
],
Expand Down
4 changes: 2 additions & 2 deletions scos_actions/metadata/structs/ntia_algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class FilterType(str, Enum):
FIR = "FIR"


class DigitalFilter(msgspec.Struct, **SIGMF_OBJECT_KWARGS):
class DigitalFilter(msgspec.Struct, tag=True, **SIGMF_OBJECT_KWARGS):
"""
Interface for generating `ntia-algorithm` `DigitalFilter` objects.
Expand Down Expand Up @@ -66,7 +66,7 @@ class Graph(msgspec.Struct, **SIGMF_OBJECT_KWARGS):
description: Optional[str] = None


class DFT(msgspec.Struct, **SIGMF_OBJECT_KWARGS):
class DFT(msgspec.Struct, tag=True, **SIGMF_OBJECT_KWARGS):
"""
Interface for generating `ntia-algorithm` `DFT` objects.
Expand Down

0 comments on commit 09e4a87

Please sign in to comment.