nost-tools 3.0.1__tar.gz → 3.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of nost-tools might be problematic. Click here for more details.

Files changed (26) hide show
  1. {nost_tools-3.0.1 → nost_tools-3.0.2}/PKG-INFO +1 -1
  2. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/__init__.py +1 -1
  3. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/manager.py +1 -1
  4. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/simulator.py +0 -1
  5. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/PKG-INFO +1 -1
  6. {nost_tools-3.0.1 → nost_tools-3.0.2}/LICENSE +0 -0
  7. {nost_tools-3.0.1 → nost_tools-3.0.2}/README.md +0 -0
  8. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/application.py +0 -0
  9. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/application_utils.py +0 -0
  10. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/configuration.py +0 -0
  11. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/entity.py +0 -0
  12. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/errors.py +0 -0
  13. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/logger_application.py +0 -0
  14. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/managed_application.py +0 -0
  15. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/observer.py +0 -0
  16. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/publisher.py +0 -0
  17. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/schemas.py +0 -0
  18. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/SOURCES.txt +0 -0
  19. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/dependency_links.txt +0 -0
  20. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/requires.txt +0 -0
  21. {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/top_level.txt +0 -0
  22. {nost_tools-3.0.1 → nost_tools-3.0.2}/pyproject.toml +0 -0
  23. {nost_tools-3.0.1 → nost_tools-3.0.2}/setup.cfg +0 -0
  24. {nost_tools-3.0.1 → nost_tools-3.0.2}/tests/test_entity.py +0 -0
  25. {nost_tools-3.0.1 → nost_tools-3.0.2}/tests/test_observer.py +0 -0
  26. {nost_tools-3.0.1 → nost_tools-3.0.2}/tests/test_simulator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nost_tools
3
- Version: 3.0.1
3
+ Version: 3.0.2
4
4
  Summary: Tools for Novel Observing Strategies Testbed (NOS-T) Applications
5
5
  Author-email: "Paul T. Grogan" <paul.grogan@asu.edu>, "Emmanuel M. Gonzalez" <emmanuelgonzalez@asu.edu>
6
6
  License-Expression: BSD-3-Clause
@@ -1,4 +1,4 @@
1
- __version__ = "3.0.1"
1
+ __version__ = "3.0.2"
2
2
 
3
3
  from .application import Application
4
4
  from .application_utils import ConnectionConfig, ModeStatusObserver, TimeStatusPublisher
@@ -770,7 +770,7 @@ class Manager(Application):
770
770
  remaining = (
771
771
  resume_time - self.simulator.get_wallclock_time()
772
772
  ).total_seconds()
773
- logger.info(
773
+ logger.debug(
774
774
  f"Resume Time: {resume_time} Current Scenario Time: {self.simulator.get_time()} Current Wall Clock Time: {self.simulator.get_wallclock_time()} Remaining time: {remaining}"
775
775
  )
776
776
  if remaining <= 0:
@@ -546,7 +546,6 @@ class Simulator(Observable):
546
546
  """
547
547
  if self._mode not in [Mode.PAUSING, Mode.PAUSED]:
548
548
  raise RuntimeError("Cannot resume: simulator is not pausing or paused.")
549
- self._next_time = self._time
550
549
  self._set_mode(Mode.RESUMING)
551
550
 
552
551
  def terminate(self) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nost_tools
3
- Version: 3.0.1
3
+ Version: 3.0.2
4
4
  Summary: Tools for Novel Observing Strategies Testbed (NOS-T) Applications
5
5
  Author-email: "Paul T. Grogan" <paul.grogan@asu.edu>, "Emmanuel M. Gonzalez" <emmanuelgonzalez@asu.edu>
6
6
  License-Expression: BSD-3-Clause
File without changes
File without changes
File without changes
File without changes