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.
- {nost_tools-3.0.1 → nost_tools-3.0.2}/PKG-INFO +1 -1
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/__init__.py +1 -1
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/manager.py +1 -1
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/simulator.py +0 -1
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/PKG-INFO +1 -1
- {nost_tools-3.0.1 → nost_tools-3.0.2}/LICENSE +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/README.md +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/application.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/application_utils.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/configuration.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/entity.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/errors.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/logger_application.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/managed_application.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/observer.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/publisher.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools/schemas.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/SOURCES.txt +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/dependency_links.txt +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/requires.txt +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/nost_tools.egg-info/top_level.txt +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/pyproject.toml +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/setup.cfg +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/tests/test_entity.py +0 -0
- {nost_tools-3.0.1 → nost_tools-3.0.2}/tests/test_observer.py +0 -0
- {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.
|
|
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
|
|
@@ -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.
|
|
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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|