flowcept 0.9.12__py3-none-any.whl → 0.9.15__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.
flowcept/cli.py CHANGED
@@ -66,7 +66,7 @@ def init_settings(full: bool = False):
66
66
  settings_path_env = os.getenv("FLOWCEPT_SETTINGS_PATH", None)
67
67
  if settings_path_env is not None:
68
68
  print(f"FLOWCEPT_SETTINGS_PATH environment variable is set to {settings_path_env}.")
69
- dest_path = settings_path_env
69
+ dest_path = Path(settings_path_env)
70
70
  else:
71
71
  dest_path = Path(os.path.join(configs._SETTINGS_DIR, "settings.yaml"))
72
72
 
flowcept/version.py CHANGED
@@ -4,4 +4,4 @@
4
4
  # The expected format is: <Major>.<Minor>.<Patch>
5
5
  # This file is supposed to be automatically modified by the CI Bot.
6
6
  # See .github/workflows/version_bumper.py
7
- __version__ = "0.9.12"
7
+ __version__ = "0.9.15"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flowcept
3
- Version: 0.9.12
3
+ Version: 0.9.15
4
4
  Summary: Capture and query workflow provenance data using data observability
5
5
  Author: Oak Ridge National Laboratory
6
6
  License-Expression: MIT
@@ -1,7 +1,7 @@
1
1
  flowcept/__init__.py,sha256=tvVZKyymdqv3qOsgpAyDppBlUiBc0ag4QF21IcS-mVk,2449
2
- flowcept/cli.py,sha256=AU6EuawCboCv933Ghb1xFL74UMIJeVTzNocPOoaJS0Q,25696
2
+ flowcept/cli.py,sha256=d3hogRpuMwQFIqw_fsYD4y074o3AFslBjlkRvTthOVM,25702
3
3
  flowcept/configs.py,sha256=DBkYx0CAaDSl8x2EJY1665PFY80eCp9PEriYH-BNwL4,8781
4
- flowcept/version.py,sha256=oReJgxDE1qrMx6aSgAcaDwhbfLZibvBc13ImnrzFA-U,307
4
+ flowcept/version.py,sha256=lpsttQT_qTX1Bsw13GeGYe5P2OBF2EKw2PC8dx5YBLw,307
5
5
  flowcept/agents/__init__.py,sha256=8eeD2CiKBtHiDsWdrHK_UreIkKlTq4dUbhHDyzw372o,175
6
6
  flowcept/agents/agent_client.py,sha256=UiBQkC9WE2weLZR2OTkEOEQt9-zqQOkPwRA17HfI-jk,2027
7
7
  flowcept/agents/agents_utils.py,sha256=Az5lvWTsBHs_3sWWwy7jSdDjNn-PvZ7KmYd79wxvdyU,6666
@@ -94,9 +94,9 @@ flowcept/instrumentation/flowcept_loop.py,sha256=nF7Sov-DCDapyYvS8zx-1ZFrnjc3CPg
94
94
  flowcept/instrumentation/flowcept_task.py,sha256=EmKODpjl8usNklKSVmsKYyCa6gC_QMqKhAr3DKaw44s,8199
95
95
  flowcept/instrumentation/flowcept_torch.py,sha256=kkZQRYq6cDBpdBU6J39_4oKRVkhyF3ODlz8ydV5WGKw,23455
96
96
  flowcept/instrumentation/task_capture.py,sha256=1g9EtLdqsTB0RHsF-eRmA2Xh9l_YqTd953d4v89IC24,8287
97
- resources/sample_settings.yaml,sha256=8IIhePR5hqHN1QaUcoHATH2Nrp6yl6DMRvoYDGOUWFQ,6881
98
- flowcept-0.9.12.dist-info/METADATA,sha256=KjhFj4dpu0BhBs5AvJFkcJq7jNCWgxdlVaT5-Q3_boA,32896
99
- flowcept-0.9.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
100
- flowcept-0.9.12.dist-info/entry_points.txt,sha256=i8q67WE0201rVxYI2lyBtS52shvgl93x2Szp4q8zMlw,47
101
- flowcept-0.9.12.dist-info/licenses/LICENSE,sha256=r5-2P6tFTuRGWT5TiX32s1y0tnp4cIqBEC1QjTaXe2k,1086
102
- flowcept-0.9.12.dist-info/RECORD,,
97
+ resources/sample_settings.yaml,sha256=-j2tPycvT2xICEBeIX7Poye7R42SycEA6_hY3H6VeWE,6881
98
+ flowcept-0.9.15.dist-info/METADATA,sha256=OU2QaLrjb7FWoIt7b4CbCYLU4qsnyCoLPHRC1uRXI2w,32896
99
+ flowcept-0.9.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
100
+ flowcept-0.9.15.dist-info/entry_points.txt,sha256=i8q67WE0201rVxYI2lyBtS52shvgl93x2Szp4q8zMlw,47
101
+ flowcept-0.9.15.dist-info/licenses/LICENSE,sha256=r5-2P6tFTuRGWT5TiX32s1y0tnp4cIqBEC1QjTaXe2k,1086
102
+ flowcept-0.9.15.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
- flowcept_version: 0.9.12 # Version of the Flowcept package. This setting file is compatible with this version.
1
+ flowcept_version: 0.9.15 # Version of the Flowcept package. This setting file is compatible with this version.
2
2
 
3
3
  project:
4
4
  debug: true # Toggle debug mode. This will add a property `debug: true` to all saved data, making it easier to retrieve/delete them later.