cgse-common 0.16.2__py3-none-any.whl → 0.16.3__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cgse-common
3
- Version: 0.16.2
3
+ Version: 0.16.3
4
4
  Summary: Software framework to support hardware testing
5
5
  Author: IvS KU Leuven
6
6
  Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
@@ -32,14 +32,14 @@ egse/setup.py,sha256=1k-5CjzY3_tZ6XCitNOIyZEWyAUC8LqGcnmdKS68vYw,33945
32
32
  egse/signal.py,sha256=zW_36xm-RpzwuCu6x30dTvjkfnuyRebKKpl69Yk1QSc,7990
33
33
  egse/socketdevice.py,sha256=R8XwYHTH3lFhFngfsGbi_L7bTnTLHxMTEKIF7gmm5rc,7465
34
34
  egse/state.py,sha256=HdU2MFOlYRbawYRZmizV6Y8MgnZrUF0bx4fXaYU-M_s,3023
35
- egse/system.py,sha256=YyWFDgCbfC2utKHj9rvBjr7ftKLCASzknTqyqX8YmzM,75529
35
+ egse/system.py,sha256=tBlhNoKvop_QpOGQhyhGUBPuAixCDOiClwqeZM-eC4I,75538
36
36
  egse/task.py,sha256=ODSLE05f31CgWsSVcVFFq1WYUZrJMb1LioPTx6VM824,2804
37
37
  egse/version.py,sha256=e9GvelUZ9mfCDlRju4MWEJeMHJW9kUzK6SKzJpyj91s,6156
38
38
  egse/zmq_ser.py,sha256=d2lETLkLUll_F1Phc1pI7MEeA41uX7YZ8lhSFmBQZVw,3022
39
39
  egse/plugins/metrics/duckdb.py,sha256=E2eeNo3I7ajRuByodaYiPNvC0Zwyc7hsIlhr1W_eXdo,16148
40
40
  egse/plugins/metrics/influxdb.py,sha256=ecxjA_csYwf8RW3sXjiQxZHREfyrfStH1HA_rAs1AA8,6690
41
41
  egse/plugins/metrics/timescaledb.py,sha256=Ug0NWDV1Ky2VeFY6tDZL9xg6AFgnAEh2F_llVPnlRBA,21191
42
- cgse_common-0.16.2.dist-info/METADATA,sha256=GE1AZ7mnrfOWRsS52w1WF_BRxiujO0jidlO05sKxP-g,3032
43
- cgse_common-0.16.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
44
- cgse_common-0.16.2.dist-info/entry_points.txt,sha256=erQovXd1bGzsngB0_sfY7IYRNwHIhwq3K8fmQvGS12o,198
45
- cgse_common-0.16.2.dist-info/RECORD,,
42
+ cgse_common-0.16.3.dist-info/METADATA,sha256=iiFpbhMvlzynWhPwp31XakrteJyIX85g8aqkpMdZ4LA,3032
43
+ cgse_common-0.16.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
44
+ cgse_common-0.16.3.dist-info/entry_points.txt,sha256=erQovXd1bGzsngB0_sfY7IYRNwHIhwq3K8fmQvGS12o,198
45
+ cgse_common-0.16.3.dist-info/RECORD,,
egse/system.py CHANGED
@@ -61,7 +61,6 @@ from rich.tree import Tree
61
61
  from typer.core import TyperCommand
62
62
 
63
63
  import signal
64
- from egse.env import get_log_file_location
65
64
  from egse.log import logger
66
65
 
67
66
  EPOCH_1958_1970 = 378691200
@@ -2319,6 +2318,8 @@ def redirect_output_to_log(output_fn: str, append: bool = False) -> TextIO:
2319
2318
  """
2320
2319
 
2321
2320
  try:
2321
+ from egse.env import get_log_file_location
2322
+
2322
2323
  location = get_log_file_location()
2323
2324
  output_path = Path(location, output_fn).expanduser()
2324
2325
  except ValueError: