lsst-pipe-base 30.2026.400__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.
Files changed (38) hide show
  1. lsst/pipe/base/_instrument.py +17 -5
  2. lsst/pipe/base/_quantumContext.py +3 -3
  3. lsst/pipe/base/_status.py +14 -0
  4. lsst/pipe/base/automatic_connection_constants.py +11 -0
  5. lsst/pipe/base/cli/cmd/__init__.py +2 -0
  6. lsst/pipe/base/cli/cmd/commands.py +108 -1
  7. lsst/pipe/base/graph/graph.py +9 -8
  8. lsst/pipe/base/log_capture.py +1 -1
  9. lsst/pipe/base/pipeline.py +2 -2
  10. lsst/pipe/base/pipelineIR.py +1 -1
  11. lsst/pipe/base/pipeline_graph/_dataset_types.py +2 -2
  12. lsst/pipe/base/pipeline_graph/_edges.py +11 -11
  13. lsst/pipe/base/pipeline_graph/_pipeline_graph.py +2 -2
  14. lsst/pipe/base/pipeline_graph/visualization/_dot.py +13 -12
  15. lsst/pipe/base/pipeline_graph/visualization/_status_annotator.py +7 -0
  16. lsst/pipe/base/prerequisite_helpers.py +2 -1
  17. lsst/pipe/base/quantum_graph/_multiblock.py +29 -13
  18. lsst/pipe/base/quantum_graph/_provenance.py +411 -19
  19. lsst/pipe/base/quantum_graph/aggregator/__init__.py +0 -1
  20. lsst/pipe/base/quantum_graph/formatter.py +4 -4
  21. lsst/pipe/base/quantum_graph/ingest_graph.py +61 -4
  22. lsst/pipe/base/quantum_graph_builder.py +1 -8
  23. lsst/pipe/base/quantum_graph_skeleton.py +29 -27
  24. lsst/pipe/base/quantum_provenance_graph.py +12 -10
  25. lsst/pipe/base/separable_pipeline_executor.py +1 -1
  26. lsst/pipe/base/single_quantum_executor.py +1 -1
  27. lsst/pipe/base/tests/mocks/_storage_class.py +2 -1
  28. lsst/pipe/base/version.py +1 -1
  29. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/METADATA +1 -1
  30. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/RECORD +38 -38
  31. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/WHEEL +1 -1
  32. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/entry_points.txt +0 -0
  33. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/COPYRIGHT +0 -0
  34. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/LICENSE +0 -0
  35. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/bsd_license.txt +0 -0
  36. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/licenses/gpl-v3.0.txt +0 -0
  37. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/top_level.txt +0 -0
  38. {lsst_pipe_base-30.2026.400.dist-info → lsst_pipe_base-30.2026.500.dist-info}/zip-safe +0 -0
@@ -571,12 +571,13 @@ class QuantumGraphSkeleton:
571
571
  def set_dataset_ref(
572
572
  self, ref: DatasetRef, key: DatasetKey | PrerequisiteDatasetKey | None = None
573
573
  ) -> None:
574
- """Associate a dataset node with a `DatasetRef` instance.
574
+ """Associate a dataset node with a `~lsst.daf.butler.DatasetRef`
575
+ instance.
575
576
 
576
577
  Parameters
577
578
  ----------
578
- ref : `DatasetRef`
579
- `DatasetRef` to associate with the node.
579
+ ref : `~lsst.daf.butler.DatasetRef`
580
+ `~lsst.daf.butler.DatasetRef` to associate with the node.
580
581
  key : `DatasetKey` or `PrerequisiteDatasetKey`, optional
581
582
  Identifier for the graph node. If not provided, a `DatasetKey`
582
583
  is constructed from the dataset type name and data ID of ``ref``.
@@ -586,32 +587,33 @@ class QuantumGraphSkeleton:
586
587
  self._xgraph.nodes[key]["ref"] = ref
587
588
 
588
589
  def set_output_for_skip(self, ref: DatasetRef) -> None:
589
- """Associate a dataset node with a `DatasetRef` that represents an
590
- existing output in a collection where such outputs can cause a quantum
591
- to be skipped.
590
+ """Associate a dataset node with a `~lsst.daf.butler.DatasetRef` that
591
+ represents an existing output in a collection where such outputs can
592
+ cause a quantum to be skipped.
592
593
 
593
594
  Parameters
594
595
  ----------
595
- ref : `DatasetRef`
596
- `DatasetRef` to associate with the node.
596
+ ref : `~lsst.daf.butler.DatasetRef`
597
+ `~lsst.daf.butler.DatasetRef` to associate with the node.
597
598
  """
598
599
  key = DatasetKey(ref.datasetType.name, ref.dataId.required_values)
599
600
  self._xgraph.nodes[key]["output_for_skip"] = ref
600
601
 
601
602
  def set_output_in_the_way(self, ref: DatasetRef) -> None:
602
- """Associate a dataset node with a `DatasetRef` that represents an
603
- existing output in the output RUN collection.
603
+ """Associate a dataset node with a `~lsst.daf.butler.DatasetRef` that
604
+ represents an existing output in the output RUN collection.
604
605
 
605
606
  Parameters
606
607
  ----------
607
- ref : `DatasetRef`
608
- `DatasetRef` to associate with the node.
608
+ ref : `~lsst.daf.butler.DatasetRef`
609
+ `~lsst.daf.butler.DatasetRef` to associate with the node.
609
610
  """
610
611
  key = DatasetKey(ref.datasetType.name, ref.dataId.required_values)
611
612
  self._xgraph.nodes[key]["output_in_the_way"] = ref
612
613
 
613
614
  def get_dataset_ref(self, key: DatasetKey | PrerequisiteDatasetKey) -> DatasetRef | None:
614
- """Return the `DatasetRef` associated with the given node.
615
+ """Return the `~lsst.daf.butler.DatasetRef` associated with the given
616
+ node.
615
617
 
616
618
  This does not return "output for skip" and "output in the way"
617
619
  datasets.
@@ -623,14 +625,14 @@ class QuantumGraphSkeleton:
623
625
 
624
626
  Returns
625
627
  -------
626
- ref : `DatasetRef` or `None`
628
+ ref : `~lsst.daf.butler.DatasetRef` or `None`
627
629
  Dataset reference associated with the node.
628
630
  """
629
631
  return self._xgraph.nodes[key].get("ref")
630
632
 
631
633
  def get_output_for_skip(self, key: DatasetKey) -> DatasetRef | None:
632
- """Return the `DatasetRef` associated with the given node in a
633
- collection where it could lead to a quantum being skipped.
634
+ """Return the `~lsst.daf.butler.DatasetRef` associated with the given
635
+ node in a collection where it could lead to a quantum being skipped.
634
636
 
635
637
  Parameters
636
638
  ----------
@@ -639,14 +641,14 @@ class QuantumGraphSkeleton:
639
641
 
640
642
  Returns
641
643
  -------
642
- ref : `DatasetRef` or `None`
644
+ ref : `~lsst.daf.butler.DatasetRef` or `None`
643
645
  Dataset reference associated with the node.
644
646
  """
645
647
  return self._xgraph.nodes[key].get("output_for_skip")
646
648
 
647
649
  def get_output_in_the_way(self, key: DatasetKey) -> DatasetRef | None:
648
- """Return the `DatasetRef` associated with the given node in the
649
- output RUN collection.
650
+ """Return the `~lsst.daf.butler.DatasetRef` associated with the given
651
+ node in the output RUN collection.
650
652
 
651
653
  Parameters
652
654
  ----------
@@ -655,16 +657,16 @@ class QuantumGraphSkeleton:
655
657
 
656
658
  Returns
657
659
  -------
658
- ref : `DatasetRef` or `None`
660
+ ref : `~lsst.daf.butler.DatasetRef` or `None`
659
661
  Dataset reference associated with the node.
660
662
  """
661
663
  return self._xgraph.nodes[key].get("output_in_the_way")
662
664
 
663
665
  def discard_output_in_the_way(self, key: DatasetKey) -> None:
664
- """Drop any `DatasetRef` associated with this node in the output RUN
665
- collection.
666
+ """Drop any `~lsst.daf.butler.DatasetRef` associated with this node in
667
+ the output RUN collection.
666
668
 
667
- Does nothing if there is no such `DatasetRef`.
669
+ Does nothing if there is no such `~lsst.daf.butler.DatasetRef`.
668
670
 
669
671
  Parameters
670
672
  ----------
@@ -676,8 +678,8 @@ class QuantumGraphSkeleton:
676
678
  def set_data_id(self, key: Key, data_id: DataCoordinate) -> None:
677
679
  """Set the data ID associated with a node.
678
680
 
679
- This updates the data ID in any `DatasetRef` objects associated with
680
- the node via `set_ref`, `set_output_for_skip`, or
681
+ This updates the data ID in any `~lsst.daf.butler.DatasetRef` objects
682
+ associated with the node via `set_ref`, `set_output_for_skip`, or
681
683
  `set_output_in_the_way` as well, assuming it is an expanded version
682
684
  of the original data ID.
683
685
 
@@ -685,7 +687,7 @@ class QuantumGraphSkeleton:
685
687
  ----------
686
688
  key : `Key`
687
689
  Identifier for the graph node.
688
- data_id : `DataCoordinate`
690
+ data_id : `~lsst.daf.butler.DataCoordinate`
689
691
  Data ID for the node.
690
692
  """
691
693
  state: MutableMapping[str, Any] = self._xgraph.nodes[key]
@@ -710,7 +712,7 @@ class QuantumGraphSkeleton:
710
712
 
711
713
  Returns
712
714
  -------
713
- data_id : `DataCoordinate`
715
+ data_id : `~lsst.daf.butler.DataCoordinate`
714
716
  Expanded data ID for the node, if one is available.
715
717
 
716
718
  Raises
@@ -587,8 +587,8 @@ class TaskSummary(pydantic.BaseModel):
587
587
 
588
588
  Unpack the `QuantumInfo` object, sorting quanta of each status into
589
589
  the correct place in the `TaskSummary`. If looking for error messages
590
- in the `Butler` logs is desired, take special care to catch issues
591
- with missing logs.
590
+ in the `lsst.daf.butler.Butler` logs is desired, take special care to
591
+ catch issues with missing logs.
592
592
 
593
593
  Parameters
594
594
  ----------
@@ -867,7 +867,7 @@ class DatasetTypeSummary(pydantic.BaseModel):
867
867
  class Summary(pydantic.BaseModel):
868
868
  """A summary of the contents of the QuantumProvenanceGraph, including
869
869
  all information on the quanta for each task and the datasets of each
870
- `DatasetType`.
870
+ `~lsst.daf.butler.DatasetType`.
871
871
  """
872
872
 
873
873
  tasks: dict[str, TaskSummary] = pydantic.Field(default_factory=dict)
@@ -886,7 +886,7 @@ class Summary(pydantic.BaseModel):
886
886
 
887
887
  Parameters
888
888
  ----------
889
- summaries : `Sequence[Summary]`
889
+ summaries : `~collections.abc.Sequence` [`Summary`]
890
890
  Sequence of all `Summary` objects to aggregate.
891
891
  """
892
892
  result = cls()
@@ -1246,8 +1246,8 @@ class QuantumProvenanceGraph:
1246
1246
  Returns
1247
1247
  -------
1248
1248
  dataset_info : `DatasetInfo`
1249
- The `TypedDict` with information about the `DatasetType`-dataID
1250
- pair across all runs.
1249
+ The `TypedDict` with information about the
1250
+ `~lsst.daf.butler.DatasetType`-dataID pair across all runs.
1251
1251
  """
1252
1252
  return self._xgraph.nodes[key]
1253
1253
 
@@ -1263,6 +1263,7 @@ class QuantumProvenanceGraph:
1263
1263
  do_store_logs : `bool`
1264
1264
  Store the logs in the summary dictionary.
1265
1265
  n_cores : `int`, optional
1266
+ Number of cores to use.
1266
1267
 
1267
1268
  Returns
1268
1269
  -------
@@ -1792,9 +1793,10 @@ class QuantumProvenanceGraph:
1792
1793
  successes. If "exhaustive", all metadata files will be read. If
1793
1794
  "lazy", only metadata files where at least one predicted output is
1794
1795
  missing will be read.
1795
- butler : `lsst.daf.butler.Butler`
1796
- The Butler used for this report. This should match the Butler
1797
- used for the run associated with the executed quantum graph.
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.
1798
1800
  """
1799
1801
  if read_caveats == "lazy" and all(
1800
1802
  self.get_dataset_info(dataset_key)["runs"][output_run].produced
@@ -2009,7 +2011,7 @@ class _ThreadLocalButlerWrapper:
2009
2011
  full_butler : `~lsst.daf.butler.Butler`
2010
2012
  Full butler to draw datastore and dimension configuration from.
2011
2013
  qg : `QuantumGraph`
2012
- Quantum graph,
2014
+ Quantum graph.
2013
2015
 
2014
2016
  Returns
2015
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 : iterable [`str`], optional
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
@@ -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 : `Callable`, optional
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.
@@ -381,7 +381,8 @@ MockDataset.model_rebuild()
381
381
 
382
382
 
383
383
  class MockStorageClassDelegate(StorageClassDelegate):
384
- """Implementation of the StorageClassDelegate interface for mock datasets.
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.400"
2
+ __version__ = "30.2026.500"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lsst-pipe-base
3
- Version: 30.2026.400
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
@@ -3,13 +3,13 @@ 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=TE7r3kkBla2yZh8wRGDpcNSfnkRO7hb-svPTMsRaoj4,30018
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=gb60mTHbgOIEptYvJ64SaChvViXyeKJlG6kEHq4nYVw,19345
9
- lsst/pipe/base/_status.py,sha256=L46GofjfgptoBUxmtenrPZ7-MmM4WMQAPAc0sMsHeS4,21770
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=JYoi3Ngz9FP8y34V1onNGLQ_iJurqb5HkOVgn4uUYLI,3636
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
@@ -20,34 +20,34 @@ lsst/pipe/base/exec_fixup_data_id.py,sha256=9OjOcH-6AHZ1JnD_CemieI0wWX90J_VdaY9v
20
20
  lsst/pipe/base/execution_graph_fixup.py,sha256=ND0x4hlpeEW-gudo-i2K7HT7MoM5sp_mcoqRMCopSqQ,3815
21
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=6fq1L53FUYsbILX-tQixXUhxQjvKxFGDjYELRDAXnsw,11072
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=EYtjKZfbNSegAB9FZawb00dZI1a9dhV85e-Dn9EZ4qg,37498
28
- lsst/pipe/base/pipelineIR.py,sha256=XocAPtoGhfRoCLUPjRX0cqRqf4Evh8qEqUvQOTronj8,45660
27
+ lsst/pipe/base/pipeline.py,sha256=bL5a4QQy35K8Efphy9ks-0-8VK-zyI_D9CF5Zrz2gbA,37505
28
+ lsst/pipe/base/pipelineIR.py,sha256=btYHO31HratSieAB0IX96t-crrHiZmcF0xG4tE1m9c8,45661
29
29
  lsst/pipe/base/pipelineTask.py,sha256=jCyT6F3oevQ66I33Ys6g20x0F2QxSVh5qFlDE_PMfE0,8245
30
- lsst/pipe/base/prerequisite_helpers.py,sha256=bmiebQ4veSrypZgAXjmCBFfj8fUtPW9eRQaVShhxdBQ,28446
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=YM3pvt4ignAZnpO9bpBc_Yl8V-y2r3SQmYJdWnyQQNI,68742
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=hxSbeNhdCSBO2aqdIMRyQaejiUxKQfE6bSn0S0qWBNo,28395
35
- lsst/pipe/base/quantum_provenance_graph.py,sha256=RxhEGbC_Rws1T-hpMBePRaK3tJ1KqDAI7_qIvvqCQKY,92674
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=y3ZnQJApocxusHGG1R5Rnpke3B0vren1h4dcuyZLivs,17717
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=CVlCtARVONZbe6TBkuoQccFCfAgSrTV4g2OgZugqv80,29273
40
+ lsst/pipe/base/single_quantum_executor.py,sha256=-U7eAKVEbstosrvdbOz8VbXxk6Hq6xkJDwIofErNe8Q,29290
41
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=hP_T_OdeRTp5aTn88qE2-hdMB5_ZS6XI0kw3PpLsuXM,54
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=mdSk2eaknOcuiX1i0XUwIWl5NoMwBfVbqc5CvvtJNaM,1641
50
- lsst/pipe/base/cli/cmd/commands.py,sha256=djoTV-56qhrEuA-xW5_Ehh8YlOfp_tTBGswLjG1fl8k,11064
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=AZzq8HXUbWLcRKIGnKpwcCA8q0Fz-BT2pn0tFU1zulo,75148
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=MzpiI4bOUgwUpnse4Bj_KFAUFm_uERCHWd0BwAhKksc,11333
66
- lsst/pipe/base/pipeline_graph/_edges.py,sha256=U7dIOJHwIieE-Oss7ZWbebbV1XBadOjSI-DGbSd_CkA,36049
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=sgG2Fz7FazRiIApB0rWp0D_zbvv9MUPhc6wF6XgsHno,122628
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=hgy5Wk4GXptb9GbjPn8-0D9EjWsXKBEEVs1ocHLh_MA,13535
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,16 +81,16 @@ 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=dp7PXl9Cu7GfWjBi5g8KjXZgnF1KGg_idKKxtICL53Q,8679
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
86
  lsst/pipe/base/quantum_graph/_common.py,sha256=vG20KZBeg1TvWfq0vrA8NDFa1Pkg5H8fC2bU1_AK8-o,22948
87
- lsst/pipe/base/quantum_graph/_multiblock.py,sha256=lw--3Ol-nmQPkC5gzC95xUTkGXOVAfPoa1bb21cFHXE,27412
87
+ lsst/pipe/base/quantum_graph/_multiblock.py,sha256=l1i1Xuz5qhYBR_Eflka4D0cj_HsHpVrmNZvv_WO--pM,28170
88
88
  lsst/pipe/base/quantum_graph/_predicted.py,sha256=UwqCtG3g3qTmFr7Quaxi-vUux75cuAlwR92muyynSR4,91418
89
- lsst/pipe/base/quantum_graph/_provenance.py,sha256=d7WyxGx4fRla1tIrq2UH_-pGFrblAzBoybZN7ODSWt8,86779
90
- lsst/pipe/base/quantum_graph/formatter.py,sha256=oqoQ4tmguo8zr-kdAT9V8MWvFridRxKoQ0YzD07DtrI,7247
91
- lsst/pipe/base/quantum_graph/ingest_graph.py,sha256=eNW4-OBP8tDivb6JPOgBj8oWTeuV_citcFxfcxIJzrY,15234
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
92
92
  lsst/pipe/base/quantum_graph/visualization.py,sha256=EbTWhk9aPq7sX6bcHmnEIsr2xuuR6d1SxspQbRe8D0Q,12235
93
- lsst/pipe/base/quantum_graph/aggregator/__init__.py,sha256=4CK8sP_ZjUKmxKS3LnCH1zG7XSk9IEwijrluRBHhEMU,7436
93
+ lsst/pipe/base/quantum_graph/aggregator/__init__.py,sha256=pjLjg1wm0fWihTN5_CCHg2sO2rIa_t0Fd8uuF1kk91A,7435
94
94
  lsst/pipe/base/quantum_graph/aggregator/_communicators.py,sha256=6Nwo4V5xVU292kxvsgXX1k0otjKOy2S-AKe3RP5ac-k,35476
95
95
  lsst/pipe/base/quantum_graph/aggregator/_config.py,sha256=X6DZ8qN2eD8xAwC7ZXyvE1iNY-x5M48TG9OEFEf4ugg,8254
96
96
  lsst/pipe/base/quantum_graph/aggregator/_ingester.py,sha256=XINi5ei66wTpGh-_Dr4xenPOR09K5rifRNooNDt8qrc,14093
@@ -115,14 +115,14 @@ lsst/pipe/base/tests/mocks/__init__.py,sha256=fDy9H9vRAIBpKDJEXNZuDWJMzWZfpcBT4T
115
115
  lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=jVekStcrItC0tqOCc01VjYaiE9exYm3MRkwB0Gh_3J0,7465
116
116
  lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=N3fC4OMAMWWnYtyLkVdMfb9ZiFse39HniRDvlAOofOY,30691
117
117
  lsst/pipe/base/tests/mocks/_repo.py,sha256=SH-jzynS-H2xc_3GLjF7ln-kHdRoSeVVaal5qLd2hXI,28359
118
- lsst/pipe/base/tests/mocks/_storage_class.py,sha256=12IFfJMbZ5GkYlMX6ZMWiG8pMZc2Jlxke3qQW-bljdU,27434
119
- lsst_pipe_base-30.2026.400.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
120
- lsst_pipe_base-30.2026.400.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
121
- lsst_pipe_base-30.2026.400.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
122
- lsst_pipe_base-30.2026.400.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
123
- lsst_pipe_base-30.2026.400.dist-info/METADATA,sha256=hULhHW-APbX1JXauegJfvhoABggjeJK5IvrO0fTdTS8,2311
124
- lsst_pipe_base-30.2026.400.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
125
- lsst_pipe_base-30.2026.400.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
126
- lsst_pipe_base-30.2026.400.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
127
- lsst_pipe_base-30.2026.400.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
128
- lsst_pipe_base-30.2026.400.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5