lsst-ctrl-mpexec 30.0.0rc3__py3-none-any.whl → 30.0.1rc1__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.
@@ -393,7 +393,7 @@ class ButlerFactory:
393
393
  butler : `lsst.daf.butler.Butler`
394
394
  A read-only butler that collections will be added to and/or queried
395
395
  from.
396
- inputs : `Sequence` [ `str` ]
396
+ inputs : `~collections.abc.Sequence` [ `str` ]
397
397
  Collections to search for datasets.
398
398
  run : `str` or `None`
399
399
  Name of the output `~lsst.daf.butler.CollectionType.RUN` collection
@@ -357,7 +357,7 @@ def update_graph_run(
357
357
  is_flag=True,
358
358
  default=False,
359
359
  help="Use the QuantumProvenanceGraph instead of the QuantumGraphExecutionReport, "
360
- "even when there is only one qgraph. Otherwise, the `QuantumGraphExecutionReport` "
360
+ "even when there is only one qgraph. Otherwise, the QuantumGraphExecutionReport "
361
361
  "will run on one graph by default.",
362
362
  )
363
363
  @click.option(
@@ -400,18 +400,18 @@ def report(
400
400
  recoveries and persistent failures. Identify mismatch errors between
401
401
  attempts.
402
402
 
403
- Save the report as a file (`--full-output-filename`) or print it to stdout
404
- (default). If the terminal is overwhelmed with data_ids from failures try
405
- the `--brief` option.
403
+ Save the report as a file (``--full-output-filename``) or print it to
404
+ stdout (default). If the terminal is overwhelmed with data_ids from
405
+ failures try the ``--brief`` option.
406
406
 
407
- Butler `collections` and `where` options are for use in
408
- `lsst.daf.butler.queryDatasets` if paring down the collections would be
409
- useful. Pass collections in order of most to least recent. By default the
410
- collections and query will be taken from the graphs.
407
+ Butler ``collections`` and ``where`` options are for use in
408
+ `lsst.daf.butler.Registry.queryDatasets` if paring down the collections
409
+ would be useful. Pass collections in order of most to least recent. By
410
+ default the collections and query will be taken from the graphs.
411
411
 
412
412
  REPO is the location of the butler/registry config file.
413
413
 
414
- QGRAPHS is a `Sequence` of links to serialized Quantum Graphs which have
414
+ QGRAPHS is a sequence of links to serialized Quantum Graphs which have
415
415
  been executed and are to be analyzed. Pass the graphs in order of first to
416
416
  last executed.
417
417
  """
@@ -456,12 +456,13 @@ def aggregate_reports(
456
456
  Summary over common tasks and datasets. Intended for use when the same
457
457
  pipeline has been run over all groups (i.e., to aggregate all reports
458
458
  for a given step). This functionality is only compatible with reports
459
- from the `QuantumProvenanceGraph`, so the reports must be run over multiple
460
- groups or with the `--force-v2` option.
459
+ from the `~lsst.pipe.base.quantum_provenance_graph.QuantumProvenanceGraph`,
460
+ so the reports must be run over multiple groups or with the ``--force-v2``
461
+ option.
461
462
 
462
- Save the report as a file (`--full-output-filename`) or print it to stdout
463
- (default). If the terminal is overwhelmed with data_ids from failures try
464
- the `--brief` option.
463
+ Save the report as a file (``--full-output-filename``) or print it to
464
+ stdout (default). If the terminal is overwhelmed with data_ids from
465
+ failures try the ``--brief`` option.
465
466
 
466
467
  FILENAMES are the space-separated paths to json file output created by
467
468
  pipetask report.
@@ -322,7 +322,8 @@ show_option = MWOptionDecorator(
322
322
  show subset labels and associated tasks; ``uri`` to show
323
323
  predicted dataset URIs of quanta; ``pipeline-graph`` for a
324
324
  text-based visualization of the pipeline (tasks and dataset types);
325
- ``task-graph`` for a text-based visualization of just the tasks.
325
+ ``task-graph`` for a text-based visualization of just the tasks;
326
+ ``inputs`` for a list of overall-input dataset types.
326
327
  With -b, pipeline-graph and task-graph include additional information.
327
328
  """
328
329
  ),
@@ -100,7 +100,7 @@ def qgraph(
100
100
  ----------
101
101
  pipeline_graph_factory : `..PipelineGraphFactory` or `None`
102
102
  A factory that holds the pipeline and can produce a pipeline graph.
103
- If this is not `None` then `qgraph` should be `None`.
103
+ If this is not `None` then ``qgraph`` should be `None`.
104
104
  qgraph : convertible to `lsst.resources.ResourcePath`, or `None`
105
105
  URI location for a serialized quantum graph definition. If this option
106
106
  is not `None` then ``pipeline_graph_factory`` should be `None`.
@@ -45,7 +45,7 @@ def report(
45
45
  ) -> None:
46
46
  """Summarize the produced, missing and expected quanta and
47
47
  datasets belonging to an executed quantum graph using the
48
- `QuantumGraphExecutionReport`.
48
+ `lsst.pipe.base.execution_reports.QuantumGraphExecutionReport`.
49
49
 
50
50
  Parameters
51
51
  ----------
@@ -141,16 +141,17 @@ def report_v2(
141
141
  butler_config : `str`
142
142
  The Butler used for this report. This should match the Butler used for
143
143
  the run associated with the executed quantum graph.
144
- qgraph_uris : `Sequence` [`str`]
144
+ qgraph_uris : `~collections.abc.Sequence` [`str`]
145
145
  One or more uris to the serialized Quantum Graph(s).
146
- collections : `Sequence` [`str`] | None`
146
+ collections : `~collections.abc.Sequence` [`str`] | `None`
147
147
  Collection(s) associated with said graphs/processing. For use in
148
- `lsst.daf.butler.registry.queryDatasets` if paring down the query would
148
+ `lsst.daf.butler.Registry.queryDatasets` if paring down the query would
149
149
  be useful.
150
150
  where : `str`
151
151
  A "where" string to use to constrain the collections, if passed.
152
152
  full_output_filename : `str`
153
- Output the full pydantic model `QuantumProvenanceGraph.Summary` object
153
+ Output the full pydantic model
154
+ `lsst.pipe.base.quantum_provenance_graph.Summary` object
154
155
  into a JSON file. This is ideal for error-matching and cataloguing
155
156
  tools such as the ones used by Campaign Management software and pilots,
156
157
  and for searching and counting specific kinds or instances of failures.
@@ -184,7 +185,8 @@ def report_v2(
184
185
  n_cores : `int`, optional
185
186
  Number of cores for metadata and log reads.
186
187
  view_graph : `bool`
187
- Display a graph representation of `QuantumProvenanceGraph.Summary` on
188
+ Display a graph representation of
189
+ `lsst.pipe.base.quantum_provenance_graph.Summary` on
188
190
  stdout instead of the default plain-text summary. Pipeline graph nodes
189
191
  are then annotated with their status. This is a useful way to visualize
190
192
  the flow of quanta and datasets through the graph and to identify where
@@ -235,25 +237,29 @@ def report_v2(
235
237
  def aggregate_reports(
236
238
  filenames: Sequence[str], full_output_filename: str | None, brief: bool = False
237
239
  ) -> None:
238
- """Aggregrate multiple `QuantumProvenanceGraph` summaries on separate
239
- dataquery-identified groups into one wholistic report. This is intended for
240
- reports over the same tasks in the same pipeline, after `pipetask report`
241
- has been resolved over all graphs associated with each group.
240
+ """Aggregrate multiple
241
+ `lsst.pipe.base.quantum_provenance_graph.QuantumProvenanceGraph` summaries
242
+ on separate dataquery-identified groups into one wholistic report.
243
+
244
+ This is intended for reports over the same tasks in the same pipeline,
245
+ after ``pipetask report`` has been resolved over all graphs associated with
246
+ each group.
242
247
 
243
248
  Parameters
244
249
  ----------
245
- filenames : `Sequence[str]`
246
- The paths to the JSON files produced by `pipetask report` (note: this
247
- is only compatible with the multi-graph or `--force-v2` option). These
248
- files correspond to the `QuantumProvenanceGraph.Summary` objects which
249
- are produced for each group.
250
- full_output_filename : `str | None`
250
+ filenames : `~collections.abc.Sequence` [`str`]
251
+ The paths to the JSON files produced by ``pipetask report`` (note: this
252
+ is only compatible with the multi-graph or ``--force-v2`` option).
253
+ These files correspond to the
254
+ `lsst.pipe.base.quantum_provenance_graph.Summary` objects
255
+ which are produced for each group.
256
+ full_output_filename : `str` | `None`
251
257
  The name of the JSON file in which to store the aggregate report, if
252
258
  passed. This is passed to `print_summary` at the end of this function.
253
- brief : `bool = False`
259
+ brief : `bool`, optional
254
260
  Only display short (counts-only) summary on stdout. This includes
255
261
  counts and not error messages or data_ids (similar to BPS report).
256
- This option will still report all `cursed` datasets and `wonky`
262
+ This option will still report all ``cursed`` datasets and ``wonky``
257
263
  quanta. This is passed to `print_summary` at the end of this function.
258
264
  """
259
265
  summaries: list[Summary] = []
@@ -266,15 +272,15 @@ def aggregate_reports(
266
272
 
267
273
 
268
274
  def print_summary(summary: Summary, full_output_filename: str | None, brief: bool = False) -> None:
269
- """Take a `QuantumProvenanceGraph.Summary` object and write it to a file
270
- and/or the screen.
275
+ """Take a `lsst.pipe.base.quantum_provenance_graph.Summary` object and
276
+ write it to a file and/or the screen.
271
277
 
272
278
  Parameters
273
279
  ----------
274
- summary : `QuantumProvenanceGraph.Summary`
280
+ summary : `lsst.pipe.base.quantum_provenance_graph.Summary`
275
281
  This `Pydantic` model contains all the information derived from the
276
- `QuantumProvenanceGraph`.
277
- full_output_filename : `str | None`
282
+ `lsst.pipe.base.quantum_provenance_graphQuantumProvenanceGraph`.
283
+ full_output_filename : `str` | `None`
278
284
  Name of the JSON file in which to store summary information, if
279
285
  passed.
280
286
  brief : `bool`
@@ -49,10 +49,6 @@ class MPGraphExecutor(lsst.pipe.base.mp_graph_executor.MPGraphExecutor):
49
49
  """Implementation of QuantumGraphExecutor using same-host multiprocess
50
50
  execution of Quanta.
51
51
 
52
- This is a deprecated backwards-compatibility shim for
53
- `lsst.pipe.base.mp_graph_executor.MPGraphExecutor`, which has
54
- the same functionality with very minor interface changes.
55
-
56
52
  Parameters
57
53
  ----------
58
54
  numProc : `int`
@@ -74,6 +70,13 @@ class MPGraphExecutor(lsst.pipe.base.mp_graph_executor.MPGraphExecutor):
74
70
  `lsst.pipe.base.execution_graph_fixup.ExecutionGraphFixup`, \
75
71
  optional
76
72
  Instance used for modification of execution graph.
73
+
74
+ Notes
75
+ -----
76
+ This is a deprecated backwards-compatibility shim for
77
+ `lsst.pipe.base.mp_graph_executor.MPGraphExecutor`, which has
78
+ the same functionality with very minor interface changes.
79
+
77
80
  """
78
81
 
79
82
  def __init__(
@@ -27,7 +27,7 @@
27
27
 
28
28
  from __future__ import annotations
29
29
 
30
- __all__ = ["PreExecInit"]
30
+ __all__ = ["PreExecInit", "PreExecInitBase"]
31
31
 
32
32
  # -------------------------------
33
33
  # Imports of standard modules --
@@ -157,7 +157,7 @@ class PreExecInitBase(abc.ABC):
157
157
 
158
158
  Raises
159
159
  ------
160
- ConflictingDefinitionError
160
+ lsst.daf.butler.registry.ConflictingDefinitionError
161
161
  Raised if existing object in butler is different from new data, or
162
162
  if ``extendRun`` is `False` and datasets already exists.
163
163
  Content of a butler collection should not be changed if this
@@ -113,6 +113,7 @@ class ShowInfo:
113
113
  "pipeline-graph",
114
114
  "task-graph",
115
115
  "subsets",
116
+ "inputs",
116
117
  }
117
118
  graph_commands = {"graph", "workflow", "uri"}
118
119
 
@@ -186,6 +187,15 @@ class ShowInfo:
186
187
  visualization.show(
187
188
  pipeline_graph_factory(visualization_only=True), self.stream, dataset_types=False
188
189
  )
190
+ case "inputs":
191
+ pg = pipeline_graph_factory(visualization_only=True)
192
+ for dataset_type_name, dataset_type_node in sorted(pg.iter_overall_inputs()):
193
+ assert dataset_type_node is not None, "Pipeline graph was just resolved."
194
+ print(
195
+ dataset_type_name,
196
+ dataset_type_node.dimensions,
197
+ dataset_type_node.storage_class_name,
198
+ )
189
199
  case _:
190
200
  raise RuntimeError(f"Unexpectedly tried to process command {command!r}.")
191
201
  self.handled.add(command)
@@ -54,10 +54,6 @@ if TYPE_CHECKING:
54
54
  class SingleQuantumExecutor(lsst.pipe.base.single_quantum_executor.SingleQuantumExecutor):
55
55
  """Executor class which runs one Quantum at a time.
56
56
 
57
- This is a deprecated backwards-compatibility shim for
58
- `lsst.pipe.base.single_quantum_executor.SingleQuantumExecutor`, which has
59
- the same functionality with very minor interface changes.
60
-
61
57
  Parameters
62
58
  ----------
63
59
  butler : `~lsst.daf.butler.Butler` or `None`
@@ -79,7 +75,7 @@ class SingleQuantumExecutor(lsst.pipe.base.single_quantum_executor.SingleQuantum
79
75
  a quantum will be removed. Only used when ``butler`` is not `None`.
80
76
  enableLsstDebug : `bool`, optional
81
77
  Enable debugging with ``lsstDebug`` facility for a task.
82
- limited_butler_factory : `Callable`, optional
78
+ limited_butler_factory : `~collections.abc.Callable`, optional
83
79
  A method that creates a `~lsst.daf.butler.LimitedButler` instance for a
84
80
  given Quantum. This parameter must be defined if ``butler`` is `None`.
85
81
  If ``butler`` is not `None` then this parameter is ignored.
@@ -98,7 +94,7 @@ class SingleQuantumExecutor(lsst.pipe.base.single_quantum_executor.SingleQuantum
98
94
  of those to `False`, it also avoids all dataset existence checks.
99
95
  raise_on_partial_outputs : `bool`, optional
100
96
  If `True` raise exceptions chained by
101
- `lsst.pipe.base.AnnotatedPartialOutputError` immediately, instead of
97
+ `lsst.pipe.base.AnnotatedPartialOutputsError` immediately, instead of
102
98
  considering the partial result a success and continuing to run
103
99
  downstream tasks.
104
100
  job_metadata : `~collections.abc.Mapping`
@@ -106,6 +102,13 @@ class SingleQuantumExecutor(lsst.pipe.base.single_quantum_executor.SingleQuantum
106
102
  the "job" key. This is intended to correspond to information common
107
103
  to all quanta being executed in a single process, such as the time
108
104
  taken to load the quantum graph in a BPS job.
105
+
106
+ Notes
107
+ -----
108
+ This is a deprecated backwards-compatibility shim for
109
+ `lsst.pipe.base.single_quantum_executor.SingleQuantumExecutor`, which has
110
+ the same functionality with very minor interface changes.
111
+
109
112
  """
110
113
 
111
114
  def __init__(
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "30.0.0rc3"
2
+ __version__ = "30.0.1rc1"
@@ -1,20 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lsst-ctrl-mpexec
3
- Version: 30.0.0rc3
3
+ Version: 30.0.1rc1
4
4
  Summary: Pipeline execution infrastructure for the Rubin Observatory LSST Science Pipelines.
5
5
  Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
6
6
  License-Expression: BSD-3-Clause OR GPL-3.0-or-later
7
7
  Project-URL: Homepage, https://github.com/lsst/ctrl_mpexec
8
+ Project-URL: Source, https://github.com/lsst/ctrl_mpexec
8
9
  Keywords: lsst
9
10
  Classifier: Intended Audience :: Science/Research
10
11
  Classifier: Operating System :: OS Independent
11
12
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.14
16
16
  Classifier: Topic :: Scientific/Engineering :: Astronomy
17
- Requires-Python: >=3.11.0
17
+ Requires-Python: >=3.12.0
18
18
  Description-Content-Type: text/x-rst
19
19
  License-File: COPYRIGHT
20
20
  License-File: LICENSE
@@ -5,46 +5,46 @@ lsst/ctrl/mpexec/_pipeline_graph_factory.py,sha256=HJPjvbsfqsKE0FVru5zje55rgKb9j
5
5
  lsst/ctrl/mpexec/execFixupDataId.py,sha256=26eFIrZ-I5oTGoBzO35WH2UtwYIPe5aX37IHE9OfAa0,1633
6
6
  lsst/ctrl/mpexec/executionGraphFixup.py,sha256=hpkU0cCRcz80c-YQS1eU5G4riRTSUfOfPjCehTkWTMA,1776
7
7
  lsst/ctrl/mpexec/log_capture.py,sha256=Y8ExKqrpyboBoi6giY9dlL4OyCrZn-c_6EB8Oh_z6dc,1605
8
- lsst/ctrl/mpexec/mpGraphExecutor.py,sha256=RvmnS-PNSf3GkTnnjWyXsLkjq8wTGXXUtKXbxZndv2k,4864
9
- lsst/ctrl/mpexec/preExecInit.py,sha256=e9C853k5EPD_9QSRDmyhv7fCgMnsSiqbsUUjiUCISPM,8733
8
+ lsst/ctrl/mpexec/mpGraphExecutor.py,sha256=pKjy0ZJxUGJzh-1jrFSOhWAvfkFH8UaYG4R5H6LYSmQ,4885
9
+ lsst/ctrl/mpexec/preExecInit.py,sha256=7JsdWjrN4Qzm-XPfaVINHyCqepTGdcdzkEm67f-o3Nw,8777
10
10
  lsst/ctrl/mpexec/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  lsst/ctrl/mpexec/quantumGraphExecutor.py,sha256=7LCoqsmNSWUJ1ph1bfgrVrpk5Ug5ArzniFkqcxgjfhI,2106
12
12
  lsst/ctrl/mpexec/reports.py,sha256=EvHjW9wdjfN1lj4DQH634oJ9zv3wYKySvJ_UtFDtNHY,2460
13
13
  lsst/ctrl/mpexec/separablePipelineExecutor.py,sha256=yHymF9jSthVCl_230TzRqQrcAmohSgR7Me8YAbMazM8,1818
14
- lsst/ctrl/mpexec/showInfo.py,sha256=SJfsjLRXnlgflY2HwH2fK8v4UlmzFOcWEBuROgA6nBI,17599
14
+ lsst/ctrl/mpexec/showInfo.py,sha256=HUn0f59jSxauQ_cLZtjzlhihuX5yl_0ODXHJPG22YYQ,18145
15
15
  lsst/ctrl/mpexec/simple_pipeline_executor.py,sha256=aVWgOds0ILCTzXdrWy0KFyjcIuqw6cNq8alAJeZd8AE,1797
16
- lsst/ctrl/mpexec/singleQuantumExecutor.py,sha256=KnghvHDWqamrI3pmdH4GdpNQBVx3IBa3i0fLmUG978M,9102
16
+ lsst/ctrl/mpexec/singleQuantumExecutor.py,sha256=5RUTj4oT0Yc6fLftaXnmbbhQgRXvFKX_gqcJKR8d_tg,9141
17
17
  lsst/ctrl/mpexec/taskFactory.py,sha256=0TdCM-le7CXhobVbWPTqcq9sOrGceUY6mmkzzWhi0dM,1707
18
18
  lsst/ctrl/mpexec/util.py,sha256=y2Rw5PL40_EuLtVxiqSVX0JfPV4IrFl1LfOMUWx2u30,4236
19
- lsst/ctrl/mpexec/version.py,sha256=Tt7y1Knxuicvk026_H8m0GXmxEFM8XEWyfbDoHcAxbs,52
19
+ lsst/ctrl/mpexec/version.py,sha256=-auEgPcWk4qAWrWVMJY7Of7dAJ0dNQHoqQraCNdAEN4,52
20
20
  lsst/ctrl/mpexec/cli/__init__.py,sha256=6dpDHNBzyicVpFi1fsaiYVbYEMeoL57IHKkPaej24gs,1301
21
- lsst/ctrl/mpexec/cli/butler_factory.py,sha256=nx22v4vsD7GglgQ7D0Nf6o3NONcyQvecCruN_neEaCw,24365
21
+ lsst/ctrl/mpexec/cli/butler_factory.py,sha256=SWx12wSmLlxAM6NvY_opffa9-MXvUddq8-G_6nVgavo,24382
22
22
  lsst/ctrl/mpexec/cli/pipetask.py,sha256=4HnhX9dCizCihVbpHVJX5WXO9TEli9oL6wA-tPh1_vA,2209
23
23
  lsst/ctrl/mpexec/cli/utils.py,sha256=0iUM6LGPgSUv3Zh9N-Hi1VNyef3dEZbsR7GOySBU_q0,9891
24
24
  lsst/ctrl/mpexec/cli/cmd/__init__.py,sha256=nRmwwW5d55gAEkyE7NpSK8mxa56HcfEta2r-Y9I07F8,1661
25
- lsst/ctrl/mpexec/cli/cmd/commands.py,sha256=uCnIaFzHhTAt1Onvhp_evPVWlikB6OBMRU7P8XR_Y8s,17086
25
+ lsst/ctrl/mpexec/cli/cmd/commands.py,sha256=wrunVLs6Di_gl8upUteoX-YL_Z1LNrtBsz7sQxtr7I4,17150
26
26
  lsst/ctrl/mpexec/cli/opt/__init__.py,sha256=IzUInuJj9igiaNcEqMx0adelgJtQC5_XMYnaiizBn0A,1378
27
27
  lsst/ctrl/mpexec/cli/opt/arguments.py,sha256=vjUw0ZN_4HStp-_3ne6AT5S_eH7sly3OVfL07tgrJnY,1572
28
28
  lsst/ctrl/mpexec/cli/opt/optionGroups.py,sha256=9UrFUWlkiBaAO2WDE0rKokAEXK-dm-SmBPyapY6B7t8,8622
29
- lsst/ctrl/mpexec/cli/opt/options.py,sha256=j5abmIcs5huxeYQoVyqle9OL0chm3H34MFOMj-hzFlI,19475
29
+ lsst/ctrl/mpexec/cli/opt/options.py,sha256=9XmRYqkoBwOdRiR8JMFgZiAWz7_yVKkRCfND5SceJIQ,19537
30
30
  lsst/ctrl/mpexec/cli/script/__init__.py,sha256=eCuF4FAI5D3pl05IMJj7TCkZq-hireua2mA5Ui-mKSI,1624
31
31
  lsst/ctrl/mpexec/cli/script/build.py,sha256=t0je-RkHCKhaL0JAeNTRRGPnluD-blDUaENVtJyd2z8,7003
32
32
  lsst/ctrl/mpexec/cli/script/cleanup.py,sha256=lf6Tn_875b35a58A_dbweRDZujqVqB-uRSHIQGbv0OI,5071
33
33
  lsst/ctrl/mpexec/cli/script/confirmable.py,sha256=Bo1GSTZQn44d_TRj6N3YfpYcZiuHEYoz26WZQwMyb4A,3918
34
34
  lsst/ctrl/mpexec/cli/script/pre_exec_init_qbb.py,sha256=YH-YkjN4KhII_ujv0O3HIXWA8mi3ULZ5tL7oTAvrIzw,4159
35
35
  lsst/ctrl/mpexec/cli/script/purge.py,sha256=DkTvOdqSPIhFXRVpPSd9KrUtWfhw5i-7okQLg1GCSeE,10705
36
- lsst/ctrl/mpexec/cli/script/qgraph.py,sha256=BoMd_0w3yPNxSYq3q_wHoclaBeUwEgpk4Bajxt4viRE,15415
37
- lsst/ctrl/mpexec/cli/script/report.py,sha256=RCy8KcOqijYmKlzaeIYT34FrbgFgqoFJdrKCiSFONRY,13038
36
+ lsst/ctrl/mpexec/cli/script/qgraph.py,sha256=uI6gNhw9-IPZhqfc482jrkxzxySQOY3HFwIF-WTXluw,15417
37
+ lsst/ctrl/mpexec/cli/script/report.py,sha256=iF7j1aHqOkYEt7LAJQwwL0NlLkWCkLPPk39SWlbKCJA,13339
38
38
  lsst/ctrl/mpexec/cli/script/run.py,sha256=rb3GAPksZi2b5YG1LPsqgDwugEqgIeLbRZGojm5yUMc,14385
39
39
  lsst/ctrl/mpexec/cli/script/run_qbb.py,sha256=W1MvzoUBKvHNx17s1dvyGXaC7C5uGvbvDrF9meXbvok,10855
40
40
  lsst/ctrl/mpexec/cli/script/update_graph_run.py,sha256=2b0Q0j5yPC4bWxq0tsd4et2VmOnu-dQLQa94340z78Y,2623
41
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/licenses/COPYRIGHT,sha256=pGCjnRAnyt02a6_9PLzXQikpvYmvMmK9fCdOKlRSV6k,369
42
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
43
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
44
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
45
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/METADATA,sha256=RdzqWLZThTDHXTgWzhII6IGJ1m1wYIaoTbQ-hr2Begc,2322
46
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
47
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/entry_points.txt,sha256=aYE38yqZU8qvpLUUkXzgmUxDJYYknEqPxgxYkowrL4s,64
48
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
49
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
50
- lsst_ctrl_mpexec-30.0.0rc3.dist-info/RECORD,,
41
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/licenses/COPYRIGHT,sha256=pGCjnRAnyt02a6_9PLzXQikpvYmvMmK9fCdOKlRSV6k,369
42
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
43
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
44
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
45
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/METADATA,sha256=6Jb9kZ1n3eXHQQ24Q_bcvcTFufpfqo8ovthTvZ4uh9w,2328
46
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
47
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/entry_points.txt,sha256=aYE38yqZU8qvpLUUkXzgmUxDJYYknEqPxgxYkowrL4s,64
48
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
49
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
50
+ lsst_ctrl_mpexec-30.0.1rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5