lsst-pipe-base 30.2026.300__py3-none-any.whl → 30.2026.500__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.
- lsst/pipe/base/_instrument.py +21 -12
- lsst/pipe/base/_quantumContext.py +3 -3
- lsst/pipe/base/_status.py +43 -10
- lsst/pipe/base/automatic_connection_constants.py +20 -1
- lsst/pipe/base/cli/cmd/__init__.py +18 -2
- lsst/pipe/base/cli/cmd/commands.py +149 -4
- lsst/pipe/base/connectionTypes.py +72 -160
- lsst/pipe/base/connections.py +3 -6
- lsst/pipe/base/execution_reports.py +0 -5
- lsst/pipe/base/graph/graph.py +9 -8
- lsst/pipe/base/log_capture.py +1 -1
- lsst/pipe/base/pipeline.py +5 -6
- lsst/pipe/base/pipelineIR.py +1 -7
- lsst/pipe/base/pipelineTask.py +5 -7
- lsst/pipe/base/pipeline_graph/_dataset_types.py +2 -2
- lsst/pipe/base/pipeline_graph/_edges.py +30 -18
- lsst/pipe/base/pipeline_graph/_pipeline_graph.py +10 -2
- lsst/pipe/base/pipeline_graph/visualization/_dot.py +13 -12
- lsst/pipe/base/pipeline_graph/visualization/_status_annotator.py +7 -0
- lsst/pipe/base/prerequisite_helpers.py +2 -1
- lsst/pipe/base/quantum_graph/_common.py +3 -1
- lsst/pipe/base/quantum_graph/_multiblock.py +29 -13
- lsst/pipe/base/quantum_graph/_predicted.py +7 -0
- lsst/pipe/base/quantum_graph/_provenance.py +498 -56
- lsst/pipe/base/quantum_graph/aggregator/__init__.py +0 -1
- lsst/pipe/base/quantum_graph/aggregator/_communicators.py +9 -1
- lsst/pipe/base/quantum_graph/aggregator/_config.py +78 -9
- lsst/pipe/base/quantum_graph/aggregator/_ingester.py +12 -11
- lsst/pipe/base/quantum_graph/aggregator/_scanner.py +14 -6
- lsst/pipe/base/quantum_graph/aggregator/_structs.py +3 -3
- lsst/pipe/base/quantum_graph/aggregator/_supervisor.py +14 -13
- lsst/pipe/base/quantum_graph/aggregator/_writer.py +2 -2
- lsst/pipe/base/quantum_graph/formatter.py +74 -4
- lsst/pipe/base/quantum_graph/ingest_graph.py +413 -0
- lsst/pipe/base/quantum_graph_builder.py +1 -8
- lsst/pipe/base/quantum_graph_skeleton.py +29 -27
- lsst/pipe/base/quantum_provenance_graph.py +29 -12
- lsst/pipe/base/separable_pipeline_executor.py +6 -7
- lsst/pipe/base/single_quantum_executor.py +7 -7
- lsst/pipe/base/struct.py +4 -0
- lsst/pipe/base/tests/mocks/_storage_class.py +2 -1
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/METADATA +2 -1
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/RECORD +52 -51
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/WHEEL +1 -1
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/zip-safe +0 -0
|
@@ -79,6 +79,7 @@ from .automatic_connection_constants import (
|
|
|
79
79
|
METADATA_OUTPUT_CONNECTION_NAME,
|
|
80
80
|
METADATA_OUTPUT_STORAGE_CLASS,
|
|
81
81
|
METADATA_OUTPUT_TEMPLATE,
|
|
82
|
+
PROVENANCE_DATASET_TYPE_NAME,
|
|
82
83
|
)
|
|
83
84
|
from .graph import QuantumGraph, QuantumNode
|
|
84
85
|
|
|
@@ -586,8 +587,8 @@ class TaskSummary(pydantic.BaseModel):
|
|
|
586
587
|
|
|
587
588
|
Unpack the `QuantumInfo` object, sorting quanta of each status into
|
|
588
589
|
the correct place in the `TaskSummary`. If looking for error messages
|
|
589
|
-
in the `Butler` logs is desired, take special care to
|
|
590
|
-
with missing logs.
|
|
590
|
+
in the `lsst.daf.butler.Butler` logs is desired, take special care to
|
|
591
|
+
catch issues with missing logs.
|
|
591
592
|
|
|
592
593
|
Parameters
|
|
593
594
|
----------
|
|
@@ -866,7 +867,7 @@ class DatasetTypeSummary(pydantic.BaseModel):
|
|
|
866
867
|
class Summary(pydantic.BaseModel):
|
|
867
868
|
"""A summary of the contents of the QuantumProvenanceGraph, including
|
|
868
869
|
all information on the quanta for each task and the datasets of each
|
|
869
|
-
|
|
870
|
+
`~lsst.daf.butler.DatasetType`.
|
|
870
871
|
"""
|
|
871
872
|
|
|
872
873
|
tasks: dict[str, TaskSummary] = pydantic.Field(default_factory=dict)
|
|
@@ -885,7 +886,7 @@ class Summary(pydantic.BaseModel):
|
|
|
885
886
|
|
|
886
887
|
Parameters
|
|
887
888
|
----------
|
|
888
|
-
summaries : `
|
|
889
|
+
summaries : `~collections.abc.Sequence` [`Summary`]
|
|
889
890
|
Sequence of all `Summary` objects to aggregate.
|
|
890
891
|
"""
|
|
891
892
|
result = cls()
|
|
@@ -1245,8 +1246,8 @@ class QuantumProvenanceGraph:
|
|
|
1245
1246
|
Returns
|
|
1246
1247
|
-------
|
|
1247
1248
|
dataset_info : `DatasetInfo`
|
|
1248
|
-
The `TypedDict` with information about the
|
|
1249
|
-
pair across all runs.
|
|
1249
|
+
The `TypedDict` with information about the
|
|
1250
|
+
`~lsst.daf.butler.DatasetType`-dataID pair across all runs.
|
|
1250
1251
|
"""
|
|
1251
1252
|
return self._xgraph.nodes[key]
|
|
1252
1253
|
|
|
@@ -1262,6 +1263,7 @@ class QuantumProvenanceGraph:
|
|
|
1262
1263
|
do_store_logs : `bool`
|
|
1263
1264
|
Store the logs in the summary dictionary.
|
|
1264
1265
|
n_cores : `int`, optional
|
|
1266
|
+
Number of cores to use.
|
|
1265
1267
|
|
|
1266
1268
|
Returns
|
|
1267
1269
|
-------
|
|
@@ -1513,8 +1515,22 @@ class QuantumProvenanceGraph:
|
|
|
1513
1515
|
len(self._datasets.keys()),
|
|
1514
1516
|
)
|
|
1515
1517
|
if use_qbb:
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
+
provenance_graph_ref: DatasetRef | None = None
|
|
1519
|
+
try:
|
|
1520
|
+
provenance_graph_ref = butler.find_dataset(
|
|
1521
|
+
PROVENANCE_DATASET_TYPE_NAME, collections=output_run
|
|
1522
|
+
)
|
|
1523
|
+
except MissingDatasetTypeError:
|
|
1524
|
+
pass
|
|
1525
|
+
if provenance_graph_ref is not None:
|
|
1526
|
+
_LOG.warning(
|
|
1527
|
+
"Cannot use QBB for metadata/log reads after provenance has been ingested; "
|
|
1528
|
+
"falling back to full butler."
|
|
1529
|
+
)
|
|
1530
|
+
self._butler_wrappers[output_run] = _ThreadLocalButlerWrapper.wrap_full(butler)
|
|
1531
|
+
else:
|
|
1532
|
+
_LOG.verbose("Using quantum-backed butler for metadata loads.")
|
|
1533
|
+
self._butler_wrappers[output_run] = _ThreadLocalButlerWrapper.wrap_qbb(butler, qgraph)
|
|
1518
1534
|
else:
|
|
1519
1535
|
_LOG.verbose("Using full butler for metadata loads.")
|
|
1520
1536
|
self._butler_wrappers[output_run] = _ThreadLocalButlerWrapper.wrap_full(butler)
|
|
@@ -1777,9 +1793,10 @@ class QuantumProvenanceGraph:
|
|
|
1777
1793
|
successes. If "exhaustive", all metadata files will be read. If
|
|
1778
1794
|
"lazy", only metadata files where at least one predicted output is
|
|
1779
1795
|
missing will be read.
|
|
1780
|
-
|
|
1781
|
-
The
|
|
1782
|
-
|
|
1796
|
+
executor : `concurrent.futures.Executor`
|
|
1797
|
+
The futures executor to use.
|
|
1798
|
+
futures : `list` [ `concurrent.futures.Future` ]
|
|
1799
|
+
Current list of futures. Will be modified.
|
|
1783
1800
|
"""
|
|
1784
1801
|
if read_caveats == "lazy" and all(
|
|
1785
1802
|
self.get_dataset_info(dataset_key)["runs"][output_run].produced
|
|
@@ -1994,7 +2011,7 @@ class _ThreadLocalButlerWrapper:
|
|
|
1994
2011
|
full_butler : `~lsst.daf.butler.Butler`
|
|
1995
2012
|
Full butler to draw datastore and dimension configuration from.
|
|
1996
2013
|
qg : `QuantumGraph`
|
|
1997
|
-
Quantum graph
|
|
2014
|
+
Quantum graph.
|
|
1998
2015
|
|
|
1999
2016
|
Returns
|
|
2000
2017
|
-------
|
|
@@ -79,7 +79,7 @@ class SeparablePipelineExecutor:
|
|
|
79
79
|
clobber_output : `bool`, optional
|
|
80
80
|
If set, the pipeline execution overwrites existing output files.
|
|
81
81
|
Otherwise, any conflict between existing and new outputs is an error.
|
|
82
|
-
skip_existing_in :
|
|
82
|
+
skip_existing_in : `~collections.abc.Iterable` [`str`], optional
|
|
83
83
|
If not empty, the pipeline execution searches the listed collections
|
|
84
84
|
for existing outputs, and skips any quanta that have run to completion
|
|
85
85
|
(or have no work to do). Otherwise, all tasks are attempted (subject to
|
|
@@ -390,10 +390,11 @@ class SeparablePipelineExecutor:
|
|
|
390
390
|
provenance_dataset_ref : `lsst.daf.butler.DatasetRef`, optional
|
|
391
391
|
Dataset that should be used to save provenance. Provenance is only
|
|
392
392
|
supported when running in a single process (at least for the
|
|
393
|
-
default quantum executor) and
|
|
394
|
-
``skip_existing_in``
|
|
395
|
-
|
|
396
|
-
|
|
393
|
+
default quantum executor), and should not be used with
|
|
394
|
+
``skip_existing_in=[output_run]`` when retrying a previous
|
|
395
|
+
execution attempt. The caller is responsible for registering the
|
|
396
|
+
dataset type and for ensuring that the dimensions of this dataset
|
|
397
|
+
do not lead to uniqueness conflicts.
|
|
397
398
|
"""
|
|
398
399
|
if not graph_executor:
|
|
399
400
|
quantum_executor = SingleQuantumExecutor(
|
|
@@ -415,8 +416,6 @@ class SeparablePipelineExecutor:
|
|
|
415
416
|
self._butler.registry.resetConnectionPool()
|
|
416
417
|
|
|
417
418
|
if provenance_dataset_ref is not None:
|
|
418
|
-
if self._skip_existing_in:
|
|
419
|
-
raise RuntimeError("Provenance writing is not compatible with skip_existing_in=True.")
|
|
420
419
|
with TemporaryForIngest(self._butler, provenance_dataset_ref) as temporary:
|
|
421
420
|
graph_executor.execute(graph, provenance_graph_file=temporary.ospath)
|
|
422
421
|
temporary.ingest()
|
|
@@ -78,12 +78,12 @@ class SingleQuantumExecutor(QuantumExecutor):
|
|
|
78
78
|
Instance of a task factory. Defaults to a new instance of
|
|
79
79
|
`lsst.pipe.base.TaskFactory`.
|
|
80
80
|
skip_existing_in : `str` or `~collections.abc.Iterable` [ `str` ]
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
81
|
+
A collection name or list of collections to search for the existing
|
|
82
|
+
outputs of quanta, which indicates that those quanta should be skipped.
|
|
83
|
+
This class only checks for the presence of butler output run in the
|
|
84
|
+
list of collections. If the output run is present in the list then the
|
|
85
|
+
quanta whose complete outputs exist in the output run will be skipped.
|
|
86
|
+
`None` or empty string/sequence disables skipping.
|
|
87
87
|
clobber_outputs : `bool`, optional
|
|
88
88
|
If `True`, then outputs from a quantum that exist in output run
|
|
89
89
|
collection will be removed prior to executing a quantum. If
|
|
@@ -92,7 +92,7 @@ class SingleQuantumExecutor(QuantumExecutor):
|
|
|
92
92
|
`None`.
|
|
93
93
|
enable_lsst_debug : `bool`, optional
|
|
94
94
|
Enable debugging with ``lsstDebug`` facility for a task.
|
|
95
|
-
limited_butler_factory :
|
|
95
|
+
limited_butler_factory : `~collections.abc.Callable`, optional
|
|
96
96
|
A method that creates a `~lsst.daf.butler.LimitedButler` instance for a
|
|
97
97
|
given Quantum. This parameter must be defined if ``butler`` is `None`.
|
|
98
98
|
If ``butler`` is not `None` then this parameter is ignored.
|
lsst/pipe/base/struct.py
CHANGED
|
@@ -381,7 +381,8 @@ MockDataset.model_rebuild()
|
|
|
381
381
|
|
|
382
382
|
|
|
383
383
|
class MockStorageClassDelegate(StorageClassDelegate):
|
|
384
|
-
"""Implementation of the StorageClassDelegate interface
|
|
384
|
+
"""Implementation of the `~lsst.daf.butler.StorageClassDelegate` interface
|
|
385
|
+
for mock datasets.
|
|
385
386
|
|
|
386
387
|
This class does not implement assembly and disassembly just because it's
|
|
387
388
|
not needed right now. That could be added in the future with some
|
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "30.2026.
|
|
2
|
+
__version__ = "30.2026.500"
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 30.2026.
|
|
3
|
+
Version: 30.2026.500
|
|
4
4
|
Summary: Pipeline infrastructure for the Rubin 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/pipe_base
|
|
8
|
+
Project-URL: Source, https://github.com/lsst/pipe_base
|
|
8
9
|
Keywords: lsst
|
|
9
10
|
Classifier: Intended Audience :: Science/Research
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
@@ -3,51 +3,51 @@ lsst/pipe/__init__.py,sha256=_2bZAHuDVAx7MM7KA7pt3DYp641NY4RzSoRAwesWKfU,67
|
|
|
3
3
|
lsst/pipe/base/__init__.py,sha256=qBLN0yYQjIcLBLb4jFKM_ppopuqTnCehcUdFcEe69Js,970
|
|
4
4
|
lsst/pipe/base/_datasetQueryConstraints.py,sha256=bFH0_lVc49NS2_4v_i6r9POr500c0K-OHLMhMX5FjkQ,6373
|
|
5
5
|
lsst/pipe/base/_dataset_handle.py,sha256=ft_ke1LbhLLndDPARsHSQJUA05LgUFnfWOq2vbwH3wI,11353
|
|
6
|
-
lsst/pipe/base/_instrument.py,sha256=
|
|
6
|
+
lsst/pipe/base/_instrument.py,sha256=CO5_nznMFtoB_WlsCVO12dTBH04Tuws-Ol-s8u7Q9aQ,30588
|
|
7
7
|
lsst/pipe/base/_observation_dimension_packer.py,sha256=78Jg2OVFOdXIK62TS2Y3X4095xqCzmiIx9o4TXyADYA,8027
|
|
8
|
-
lsst/pipe/base/_quantumContext.py,sha256=
|
|
9
|
-
lsst/pipe/base/_status.py,sha256=
|
|
8
|
+
lsst/pipe/base/_quantumContext.py,sha256=b6gQV0z38HhDK6yZbPT3m5a2aIyO9HwixQxeJEs8xPc,19394
|
|
9
|
+
lsst/pipe/base/_status.py,sha256=ak8Cpj87-8uVp4ssfuHY6vcE5xzjIYVYHDZ_tA8zySA,22220
|
|
10
10
|
lsst/pipe/base/_task_metadata.py,sha256=Y4rjrYWvYxYCJwy86VvzxKMkNxEJbYVgLVuXo6KiXac,25638
|
|
11
11
|
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=nazY74jrdSCr6CFfPp78JecM_-udW95EYP7grLPO2hg,70830
|
|
12
|
-
lsst/pipe/base/automatic_connection_constants.py,sha256=
|
|
12
|
+
lsst/pipe/base/automatic_connection_constants.py,sha256=i_V6FCsP8cORlsoH8gpDYnWiPVvjY2tbfGxREgne34w,3972
|
|
13
13
|
lsst/pipe/base/caching_limited_butler.py,sha256=FEQK_QesUWG9sK0w9m6_SA5OPcrd6vqyq8oDKE9Wu6I,7858
|
|
14
14
|
lsst/pipe/base/config.py,sha256=yNipVEc6awwhU_O9I01g20OnvQrs28dAwkXuI1hrlYE,11982
|
|
15
15
|
lsst/pipe/base/configOverrides.py,sha256=B0An8EaX76VzWnC5dJxvyZ2AhVzawMtq7qlE9ma5lkc,14661
|
|
16
|
-
lsst/pipe/base/connectionTypes.py,sha256=
|
|
17
|
-
lsst/pipe/base/connections.py,sha256=
|
|
16
|
+
lsst/pipe/base/connectionTypes.py,sha256=RbhGQpEdwpnDlexV_FoWoYBwcayHXsW0TZevtvK1s5c,11251
|
|
17
|
+
lsst/pipe/base/connections.py,sha256=M9-btv4TIpxupELLzk-aq03WL0kQnOEQEM3dS_qQT5A,67104
|
|
18
18
|
lsst/pipe/base/dot_tools.py,sha256=vriWMaB8YTEKKvhJE5KYdVGE4gB5XmiYfD2f18Fue-c,4285
|
|
19
19
|
lsst/pipe/base/exec_fixup_data_id.py,sha256=9OjOcH-6AHZ1JnD_CemieI0wWX90J_VdaY9v1oXwMdQ,4187
|
|
20
20
|
lsst/pipe/base/execution_graph_fixup.py,sha256=ND0x4hlpeEW-gudo-i2K7HT7MoM5sp_mcoqRMCopSqQ,3815
|
|
21
|
-
lsst/pipe/base/execution_reports.py,sha256=
|
|
21
|
+
lsst/pipe/base/execution_reports.py,sha256=62pY4sBQyHPCFceQzKLYQ0eQixNcmjs5m4DJAFAsPiA,17160
|
|
22
22
|
lsst/pipe/base/graph_walker.py,sha256=Ij7JfYF0srA29VgM_DhbNBxUBeOHDOnujrTQPjVNha0,4694
|
|
23
|
-
lsst/pipe/base/log_capture.py,sha256=
|
|
23
|
+
lsst/pipe/base/log_capture.py,sha256=JnGFxyTp2ZDiiJ2-Zlj09hjCTWC86fCrj7NAOgdTl9I,11088
|
|
24
24
|
lsst/pipe/base/log_on_close.py,sha256=rauQYvsWQF9GuxoaZRjPJJ7VjATGyRUo0RyHEoUVTnQ,2666
|
|
25
25
|
lsst/pipe/base/mermaid_tools.py,sha256=cdlDJQ1x8k7-VvCLEUqvSC3GR1zCsB-aUTxOjYejNWc,5216
|
|
26
26
|
lsst/pipe/base/mp_graph_executor.py,sha256=bbsJD0i-WpW1Qc6lAvagIIx__jZfeOqN8dyt3IsyEq0,37350
|
|
27
|
-
lsst/pipe/base/pipeline.py,sha256=
|
|
28
|
-
lsst/pipe/base/pipelineIR.py,sha256=
|
|
29
|
-
lsst/pipe/base/pipelineTask.py,sha256=
|
|
30
|
-
lsst/pipe/base/prerequisite_helpers.py,sha256=
|
|
27
|
+
lsst/pipe/base/pipeline.py,sha256=bL5a4QQy35K8Efphy9ks-0-8VK-zyI_D9CF5Zrz2gbA,37505
|
|
28
|
+
lsst/pipe/base/pipelineIR.py,sha256=btYHO31HratSieAB0IX96t-crrHiZmcF0xG4tE1m9c8,45661
|
|
29
|
+
lsst/pipe/base/pipelineTask.py,sha256=jCyT6F3oevQ66I33Ys6g20x0F2QxSVh5qFlDE_PMfE0,8245
|
|
30
|
+
lsst/pipe/base/prerequisite_helpers.py,sha256=p2VaThE-zUcM9vzc_kcgEbEMzXVRGpJQH6KLcQ-QXDU,28479
|
|
31
31
|
lsst/pipe/base/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
lsst/pipe/base/quantum_graph_builder.py,sha256=
|
|
32
|
+
lsst/pipe/base/quantum_graph_builder.py,sha256=H34kHFjDY73n0zudIl_4OI6mVYFGqs2fgq-kfpsI-rs,68325
|
|
33
33
|
lsst/pipe/base/quantum_graph_executor.py,sha256=-bbeR9wZ5_Etcqpx6cDS_R-oEvfUVv9gmW0Wc4QuQNc,8127
|
|
34
|
-
lsst/pipe/base/quantum_graph_skeleton.py,sha256=
|
|
35
|
-
lsst/pipe/base/quantum_provenance_graph.py,sha256=
|
|
34
|
+
lsst/pipe/base/quantum_graph_skeleton.py,sha256=KTt4kfuiez9Wg19g2OZ7ZdX9-4peFpYJt1BaWtnVO80,28751
|
|
35
|
+
lsst/pipe/base/quantum_provenance_graph.py,sha256=LRgFmgkBj_YQop-Zfj_rsWBtQ7mlmEIi8J-wJXb_A5I,92793
|
|
36
36
|
lsst/pipe/base/quantum_reports.py,sha256=ut235L88v7SXaeVUvMA9qFl7tpeMwGnzob3X0QoOI_s,14210
|
|
37
37
|
lsst/pipe/base/resource_usage.py,sha256=LfH7Qf6taI3lxw0aB90riRMn1UxUTMBSqtBjKPJ-XuY,6759
|
|
38
|
-
lsst/pipe/base/separable_pipeline_executor.py,sha256=
|
|
38
|
+
lsst/pipe/base/separable_pipeline_executor.py,sha256=Yh0EXqiBfXBkA9WJYC54sqobg6_VaM_Y4q0MW1TkF-Q,17736
|
|
39
39
|
lsst/pipe/base/simple_pipeline_executor.py,sha256=_HGeAOgHUiRdQwsmD_qira-vcHZXlLbf_LmhLJffh2U,29563
|
|
40
|
-
lsst/pipe/base/single_quantum_executor.py,sha256
|
|
41
|
-
lsst/pipe/base/struct.py,sha256=
|
|
40
|
+
lsst/pipe/base/single_quantum_executor.py,sha256=-U7eAKVEbstosrvdbOz8VbXxk6Hq6xkJDwIofErNe8Q,29290
|
|
41
|
+
lsst/pipe/base/struct.py,sha256=fHO9QzFtzL5-jxqhcBWbjyrdbiWO-Pt4Kx1X5bxN3SU,5094
|
|
42
42
|
lsst/pipe/base/task.py,sha256=XHBd-7m1a4-6LgobBYA1DgY4H7EV-_RWKfxbhZbMmD4,15145
|
|
43
43
|
lsst/pipe/base/taskFactory.py,sha256=MsDGECJqZLSZk8SGhpuVhNaP32UWuNvxZiDcZExPFG8,3412
|
|
44
44
|
lsst/pipe/base/testUtils.py,sha256=lSBKMhoKflbi8JkMNYfEqqHNl-rtFI8UYT3QneDYpLo,18477
|
|
45
45
|
lsst/pipe/base/utils.py,sha256=JmEt3l0xrh9uayKrSXuQEq12aXOhDr2YXmbYduaxCko,1940
|
|
46
|
-
lsst/pipe/base/version.py,sha256=
|
|
46
|
+
lsst/pipe/base/version.py,sha256=y5hYXsO1N2EbgREXw_I9Z1EkkMofpP2wov7aaSrXXtc,54
|
|
47
47
|
lsst/pipe/base/cli/__init__.py,sha256=861tXIAW7SqtqNUYkjbeEdfg8lDswXsjJQca0gVCFz4,54
|
|
48
48
|
lsst/pipe/base/cli/_get_cli_subcommands.py,sha256=g_af64klRybBGKAg7fmBSZBdw2LYBAsFON_yQIMZON0,1289
|
|
49
|
-
lsst/pipe/base/cli/cmd/__init__.py,sha256=
|
|
50
|
-
lsst/pipe/base/cli/cmd/commands.py,sha256=
|
|
49
|
+
lsst/pipe/base/cli/cmd/__init__.py,sha256=AOKtbbpWFb-EXRNOlUkWOsySiN0L_ZJWsaY6z264Dx8,1689
|
|
50
|
+
lsst/pipe/base/cli/cmd/commands.py,sha256=TrGmou_ZSpPYxmfm0d2vEOzUynu9qdp7svqsYz2kG2A,14531
|
|
51
51
|
lsst/pipe/base/cli/opt/__init__.py,sha256=DN17wUbMwNIgbDBfF35sdyGfaMT81f3b_CA5Pp8POdk,1347
|
|
52
52
|
lsst/pipe/base/cli/opt/arguments.py,sha256=9LhDnsM98_2zOqqm-eyv_nnZmAQcBG5OpHzeJYw_eTw,1484
|
|
53
53
|
lsst/pipe/base/cli/opt/options.py,sha256=d5mC2WXZJiUbkdaIo_VUsvNxShD3GmredbEN5jQD64Q,1900
|
|
@@ -57,23 +57,23 @@ lsst/pipe/base/graph/__init__.py,sha256=Zs2vwSFNiu1bYDsgrWQZ0qegG5F6PIjiQ5ZGT3Eq
|
|
|
57
57
|
lsst/pipe/base/graph/_implDetails.py,sha256=QQHVnCW78UnIbALXX_v7EW7g6MTUTuuR1Q_Ss_squUw,6784
|
|
58
58
|
lsst/pipe/base/graph/_loadHelpers.py,sha256=qUfjIgFezaXZRCFV7PFzmz1SSKFjRWOMWJePuyKiD24,12064
|
|
59
59
|
lsst/pipe/base/graph/_versionDeserializers.py,sha256=Xwq-MHfxaml2bL5cxSF8qmb6rjEHHZBuSengX8iggRg,28011
|
|
60
|
-
lsst/pipe/base/graph/graph.py,sha256=
|
|
60
|
+
lsst/pipe/base/graph/graph.py,sha256=xz1OEZm8XJhPlYhIS4HxpH89vXZgx-YR7bVcMBtqIgs,75274
|
|
61
61
|
lsst/pipe/base/graph/graphSummary.py,sha256=F0ET5H4cBFYNPXvHuUBa3nTCj99rpf0JwxPG5Kfi7iw,6352
|
|
62
62
|
lsst/pipe/base/graph/quantumNode.py,sha256=l4mslxBgyUzBAqwjpx6XRP-UPxe-oRMxHJWt-_y3Dm0,7196
|
|
63
63
|
lsst/pipe/base/pipeline_graph/__init__.py,sha256=yTEuvlzbeKIHIm7GeRmGSsma1wpZFNv8j12WfSH-deY,1516
|
|
64
64
|
lsst/pipe/base/pipeline_graph/__main__.py,sha256=E6ugEwJbds22wjgcfcgzeyO04JofQwVhn_Y8kZYY1lQ,20769
|
|
65
|
-
lsst/pipe/base/pipeline_graph/_dataset_types.py,sha256=
|
|
66
|
-
lsst/pipe/base/pipeline_graph/_edges.py,sha256=
|
|
65
|
+
lsst/pipe/base/pipeline_graph/_dataset_types.py,sha256=0Y5V-apEfMkswvmgIKSs0QSHjBXvij2Eg8nFdJNmbIU,11350
|
|
66
|
+
lsst/pipe/base/pipeline_graph/_edges.py,sha256=besqmUdVZJjF4AZSAintaLGsCq5sZUUvXKI6CIWESKs,36132
|
|
67
67
|
lsst/pipe/base/pipeline_graph/_exceptions.py,sha256=3jvCXms0_5ThLGtsOlKxsI1vWiq3gY4hba8fRBW0tgI,3943
|
|
68
68
|
lsst/pipe/base/pipeline_graph/_mapping_views.py,sha256=9nLKPA8j7sS09haShbJnEtGXbb4vy_cWpbLeMLBmVvs,9194
|
|
69
69
|
lsst/pipe/base/pipeline_graph/_nodes.py,sha256=GGXfzXvrjNbwPt-0w8cC0l_I6CCNskoDNjA8Ds4ILS0,4236
|
|
70
|
-
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=
|
|
70
|
+
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=GXplib60ZgIJrsidm06Zy3HWz0RwLTEFnjPat_nyMv4,122662
|
|
71
71
|
lsst/pipe/base/pipeline_graph/_task_subsets.py,sha256=lLvcndSGcZigteWd4eeAM8LxQ1lHPBoysY8PjJTxx1c,13244
|
|
72
72
|
lsst/pipe/base/pipeline_graph/_tasks.py,sha256=jTLpm5dZMXRNrGi3L45-3DtF95PGwhmejWLZ-zcSTzo,42802
|
|
73
73
|
lsst/pipe/base/pipeline_graph/expressions.py,sha256=wNNVSWVMDZs_dp4Xd30rt1Xj8PfzWikJKo-amaJ-leM,7690
|
|
74
74
|
lsst/pipe/base/pipeline_graph/io.py,sha256=zVIybq5JyR1u1FwqF60wG0bIhz_SkgzzQiw2A7a1oNk,30943
|
|
75
75
|
lsst/pipe/base/pipeline_graph/visualization/__init__.py,sha256=qQctfWuFpcmgRdgu8Y6OsJ_pXpLKrCK-alqfVtIecls,1551
|
|
76
|
-
lsst/pipe/base/pipeline_graph/visualization/_dot.py,sha256=
|
|
76
|
+
lsst/pipe/base/pipeline_graph/visualization/_dot.py,sha256=e03GTkSAKIM2z9b9c80MJwrms12I8MJ3YPJIWuVSRf0,13621
|
|
77
77
|
lsst/pipe/base/pipeline_graph/visualization/_formatting.py,sha256=NsBxXwdmISitr8_4wPc-T8CqVB-Mq4pv7DmUefFm3JU,17845
|
|
78
78
|
lsst/pipe/base/pipeline_graph/visualization/_layout.py,sha256=aMFl2Sgw_2-AfCBr_JBIWSs7VbSfSP7Nuol0mP9lkUo,17157
|
|
79
79
|
lsst/pipe/base/pipeline_graph/visualization/_merge.py,sha256=cBKhNjgymDkzYtVutrXd9IGa-eE4Q9jnHO9F18e64dY,15435
|
|
@@ -81,23 +81,24 @@ lsst/pipe/base/pipeline_graph/visualization/_mermaid.py,sha256=V_LesIauJStjrxLO-
|
|
|
81
81
|
lsst/pipe/base/pipeline_graph/visualization/_options.py,sha256=vOIp2T7DLA48lTm5mTyCakIByb_wM21U_Crz_83MjoM,5237
|
|
82
82
|
lsst/pipe/base/pipeline_graph/visualization/_printer.py,sha256=yJMRJ-aXd3nYDgs1FqS2l_hzNbQ50HUVm55VVaNi71s,16537
|
|
83
83
|
lsst/pipe/base/pipeline_graph/visualization/_show.py,sha256=lPRjO1To2n5r3f_Wgcwy-7TmyJ7UszGGFXAlOtN1wDs,10510
|
|
84
|
-
lsst/pipe/base/pipeline_graph/visualization/_status_annotator.py,sha256=
|
|
84
|
+
lsst/pipe/base/pipeline_graph/visualization/_status_annotator.py,sha256=qX-j0Azys3fU1kHDl-G60PmYt-QOPzZ3b1bxBKf6ILg,8829
|
|
85
85
|
lsst/pipe/base/quantum_graph/__init__.py,sha256=-Gp3LihB0AXCvhG387wKAEpHRM-NrHGSXMti8cHee90,1437
|
|
86
|
-
lsst/pipe/base/quantum_graph/_common.py,sha256=
|
|
87
|
-
lsst/pipe/base/quantum_graph/_multiblock.py,sha256=
|
|
88
|
-
lsst/pipe/base/quantum_graph/_predicted.py,sha256=
|
|
89
|
-
lsst/pipe/base/quantum_graph/_provenance.py,sha256=
|
|
90
|
-
lsst/pipe/base/quantum_graph/formatter.py,sha256=
|
|
86
|
+
lsst/pipe/base/quantum_graph/_common.py,sha256=vG20KZBeg1TvWfq0vrA8NDFa1Pkg5H8fC2bU1_AK8-o,22948
|
|
87
|
+
lsst/pipe/base/quantum_graph/_multiblock.py,sha256=l1i1Xuz5qhYBR_Eflka4D0cj_HsHpVrmNZvv_WO--pM,28170
|
|
88
|
+
lsst/pipe/base/quantum_graph/_predicted.py,sha256=UwqCtG3g3qTmFr7Quaxi-vUux75cuAlwR92muyynSR4,91418
|
|
89
|
+
lsst/pipe/base/quantum_graph/_provenance.py,sha256=S7tNkr3WIhJ0lAa-wMcnvMkb0O60pOcMniiH1plZHE0,104635
|
|
90
|
+
lsst/pipe/base/quantum_graph/formatter.py,sha256=EjwcgBkPqUxULU3yOstLOjg8MKlZozebGS8uzReDRBQ,7315
|
|
91
|
+
lsst/pipe/base/quantum_graph/ingest_graph.py,sha256=Q0CMkHYpSAfjRUiJkW9nM3yE9Auy7neMtscebyUXM4o,17934
|
|
91
92
|
lsst/pipe/base/quantum_graph/visualization.py,sha256=EbTWhk9aPq7sX6bcHmnEIsr2xuuR6d1SxspQbRe8D0Q,12235
|
|
92
|
-
lsst/pipe/base/quantum_graph/aggregator/__init__.py,sha256=
|
|
93
|
-
lsst/pipe/base/quantum_graph/aggregator/_communicators.py,sha256=
|
|
94
|
-
lsst/pipe/base/quantum_graph/aggregator/_config.py,sha256=
|
|
95
|
-
lsst/pipe/base/quantum_graph/aggregator/_ingester.py,sha256=
|
|
93
|
+
lsst/pipe/base/quantum_graph/aggregator/__init__.py,sha256=pjLjg1wm0fWihTN5_CCHg2sO2rIa_t0Fd8uuF1kk91A,7435
|
|
94
|
+
lsst/pipe/base/quantum_graph/aggregator/_communicators.py,sha256=6Nwo4V5xVU292kxvsgXX1k0otjKOy2S-AKe3RP5ac-k,35476
|
|
95
|
+
lsst/pipe/base/quantum_graph/aggregator/_config.py,sha256=X6DZ8qN2eD8xAwC7ZXyvE1iNY-x5M48TG9OEFEf4ugg,8254
|
|
96
|
+
lsst/pipe/base/quantum_graph/aggregator/_ingester.py,sha256=XINi5ei66wTpGh-_Dr4xenPOR09K5rifRNooNDt8qrc,14093
|
|
96
97
|
lsst/pipe/base/quantum_graph/aggregator/_progress.py,sha256=jiz9Np73uUQ03CtH7pI6TXxXrwFUChh5hSj_gbMGHr0,7207
|
|
97
|
-
lsst/pipe/base/quantum_graph/aggregator/_scanner.py,sha256=
|
|
98
|
-
lsst/pipe/base/quantum_graph/aggregator/_structs.py,sha256=
|
|
99
|
-
lsst/pipe/base/quantum_graph/aggregator/_supervisor.py,sha256=
|
|
100
|
-
lsst/pipe/base/quantum_graph/aggregator/_writer.py,sha256=
|
|
98
|
+
lsst/pipe/base/quantum_graph/aggregator/_scanner.py,sha256=v109MsWDvQfZGSejtCTKiBeqC168lkzku4aoLoJtfCM,13398
|
|
99
|
+
lsst/pipe/base/quantum_graph/aggregator/_structs.py,sha256=MUBk8wrThFz4CuoIFUlm4t5K3QOBbye9uI1CAAdUIoA,2374
|
|
100
|
+
lsst/pipe/base/quantum_graph/aggregator/_supervisor.py,sha256=7rnxTamY7oC0HwX1tPHxRo0jk-MPwPWcAIbKlzxNXSo,9587
|
|
101
|
+
lsst/pipe/base/quantum_graph/aggregator/_writer.py,sha256=GK7WYYwQ6fB-UGdXK1Y_vMar4NBogP5QkSEZE2ujJMo,7959
|
|
101
102
|
lsst/pipe/base/script/__init__.py,sha256=cLEXE7aq5UZ0juL_ScmRw0weFgp4tDgwEX_ts-NEYic,1522
|
|
102
103
|
lsst/pipe/base/script/register_instrument.py,sha256=neQ2MTPtAiV_Hl2yatQ8-vQC24xHjhpI7VJUHf5kPX4,2445
|
|
103
104
|
lsst/pipe/base/script/retrieve_artifacts_for_quanta.py,sha256=Cr0HpzXm_C3LnIOQg5tNJht02O6xoqtWWIphjugasMA,3957
|
|
@@ -114,14 +115,14 @@ lsst/pipe/base/tests/mocks/__init__.py,sha256=fDy9H9vRAIBpKDJEXNZuDWJMzWZfpcBT4T
|
|
|
114
115
|
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=jVekStcrItC0tqOCc01VjYaiE9exYm3MRkwB0Gh_3J0,7465
|
|
115
116
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=N3fC4OMAMWWnYtyLkVdMfb9ZiFse39HniRDvlAOofOY,30691
|
|
116
117
|
lsst/pipe/base/tests/mocks/_repo.py,sha256=SH-jzynS-H2xc_3GLjF7ln-kHdRoSeVVaal5qLd2hXI,28359
|
|
117
|
-
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=
|
|
118
|
-
lsst_pipe_base-30.2026.
|
|
119
|
-
lsst_pipe_base-30.2026.
|
|
120
|
-
lsst_pipe_base-30.2026.
|
|
121
|
-
lsst_pipe_base-30.2026.
|
|
122
|
-
lsst_pipe_base-30.2026.
|
|
123
|
-
lsst_pipe_base-30.2026.
|
|
124
|
-
lsst_pipe_base-30.2026.
|
|
125
|
-
lsst_pipe_base-30.2026.
|
|
126
|
-
lsst_pipe_base-30.2026.
|
|
127
|
-
lsst_pipe_base-30.2026.
|
|
118
|
+
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=YD9iyOSs_JqfZYOejHy1AQkbfM2wJFT5zkscjrYU0Rc,27457
|
|
119
|
+
lsst_pipe_base-30.2026.500.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
120
|
+
lsst_pipe_base-30.2026.500.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
121
|
+
lsst_pipe_base-30.2026.500.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
122
|
+
lsst_pipe_base-30.2026.500.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
123
|
+
lsst_pipe_base-30.2026.500.dist-info/METADATA,sha256=Xhu9HVfCsw6NZP47eg55BiFXLyYDDPgblNN0EXPdHaY,2311
|
|
124
|
+
lsst_pipe_base-30.2026.500.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
125
|
+
lsst_pipe_base-30.2026.500.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
126
|
+
lsst_pipe_base-30.2026.500.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
127
|
+
lsst_pipe_base-30.2026.500.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
128
|
+
lsst_pipe_base-30.2026.500.dist-info/RECORD,,
|
{lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-30.2026.300.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/gpl-v3.0.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|