Skip to content

Commit

Permalink
increment version, autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jhazentia committed Mar 11, 2024
1 parent 9c0718a commit 9e600f8
Show file tree
Hide file tree
Showing 4 changed files with 6 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__ = "8.0.1"
__version__ = "9.0.0"
3 changes: 2 additions & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,8 @@ def capture_diagnostics(
"scos_sensor_version": SCOS_SENSOR_GIT_TAG,
"scos_actions_version": SCOS_ACTIONS_VERSION,
"scos_sigan_plugin": ntia_diagnostics.ScosPlugin(
name=self.sensor.signal_analyzer.plugin_name, version=self.sensor.signal_analyzer.plugin_version
name=self.sensor.signal_analyzer.plugin_name,
version=self.sensor.signal_analyzer.plugin_version,
),
"preselector_api_version": PRESELECTOR_API_VERSION,
"sigan_firmware_version": self.sensor.signal_analyzer.firmware_version,
Expand Down
2 changes: 1 addition & 1 deletion scos_actions/actions/acquire_single_freq_fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def execute(self, schedule_entry: dict, task_id: int) -> dict:
sample_start=0,
start_time=measurement_result["capture_time"],
center_frequency_Hz=self.frequency_Hz,
duration_ms=round((self.num_samples / sample_rate_Hz)*1000),
duration_ms=round((self.num_samples / sample_rate_Hz) * 1000),
overload=measurement_result["overload"],
sigan_settings=sigan_settings,
)
Expand Down
4 changes: 2 additions & 2 deletions scos_actions/hardware/mocks/mock_sigan.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import numpy as np

from scos_actions import __version__ as SCOS_ACTIONS_VERSION
from scos_actions import __package__ as SCOS_ACTIONS_NAME
from scos_actions import __version__ as SCOS_ACTIONS_VERSION
from scos_actions.calibration.calibration import Calibration
from scos_actions.hardware.sigan_iface import SignalAnalyzerInterface
from scos_actions.utils import get_datetime_str_now
Expand Down Expand Up @@ -86,7 +86,7 @@ def is_available(self):
@property
def plugin_version(self):
return self._plugin_version

@property
def plugin_name(self) -> str:
"""Returns the current package name of scos-actions."""
Expand Down

0 comments on commit 9e600f8

Please sign in to comment.