lsst-pipe-base 29.2025.2600__py3-none-any.whl → 29.2025.2800__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/all_dimensions_quantum_graph_builder.py +836 -257
- lsst/pipe/base/quantum_graph_skeleton.py +5 -5
- lsst/pipe/base/tests/mocks/_data_id_match.py +16 -0
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/METADATA +1 -1
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/RECORD +14 -14
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/WHEEL +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/zip-safe +0 -0
|
@@ -351,7 +351,7 @@ class QuantumGraphSkeleton:
|
|
|
351
351
|
key = DatasetKey(parent_dataset_type_name, data_id.required_values)
|
|
352
352
|
self._xgraph.add_node(key, data_id=data_id, **attrs)
|
|
353
353
|
if is_global_init_output:
|
|
354
|
-
assert isinstance(key, DatasetKey)
|
|
354
|
+
assert isinstance(key, DatasetKey), str(key)
|
|
355
355
|
self._global_init_outputs.add(key)
|
|
356
356
|
return key
|
|
357
357
|
|
|
@@ -448,7 +448,7 @@ class QuantumGraphSkeleton:
|
|
|
448
448
|
|
|
449
449
|
Dataset nodes that are not already present will be created.
|
|
450
450
|
"""
|
|
451
|
-
assert task_key in self._xgraph
|
|
451
|
+
assert task_key in self._xgraph, str(task_key)
|
|
452
452
|
self._xgraph.add_edges_from((dataset_key, task_key) for dataset_key in dataset_keys)
|
|
453
453
|
|
|
454
454
|
def remove_input_edges(
|
|
@@ -513,8 +513,8 @@ class QuantumGraphSkeleton:
|
|
|
513
513
|
Identifier for the dataset node. Must identify a node already
|
|
514
514
|
present in the graph.
|
|
515
515
|
"""
|
|
516
|
-
assert task_key in self._xgraph
|
|
517
|
-
assert dataset_key in self._xgraph
|
|
516
|
+
assert task_key in self._xgraph, str(task_key)
|
|
517
|
+
assert dataset_key in self._xgraph, str(dataset_key)
|
|
518
518
|
self._xgraph.add_edge(task_key, dataset_key)
|
|
519
519
|
|
|
520
520
|
def remove_output_edge(self, dataset_key: DatasetKey) -> None:
|
|
@@ -528,7 +528,7 @@ class QuantumGraphSkeleton:
|
|
|
528
528
|
present in the graph.
|
|
529
529
|
"""
|
|
530
530
|
(task_key,) = self._xgraph.predecessors(dataset_key)
|
|
531
|
-
assert dataset_key in self._xgraph
|
|
531
|
+
assert dataset_key in self._xgraph, str(dataset_key)
|
|
532
532
|
self._xgraph.remove_edge(task_key, dataset_key)
|
|
533
533
|
|
|
534
534
|
def remove_orphan_datasets(self) -> None:
|
|
@@ -140,6 +140,22 @@ class _DataIdMatchTreeVisitor(TreeVisitor):
|
|
|
140
140
|
# docstring is inherited from base class
|
|
141
141
|
raise NotImplementedError()
|
|
142
142
|
|
|
143
|
+
def visitCircleNode(self, ra: Any, dec: Any, radius: Any, node: Node) -> Any:
|
|
144
|
+
# docstring is inherited from base class
|
|
145
|
+
raise NotImplementedError()
|
|
146
|
+
|
|
147
|
+
def visitBoxNode(self, ra: Any, dec: Any, width: Any, height: Any, node: Node) -> Any:
|
|
148
|
+
# docstring is inherited from base class
|
|
149
|
+
raise NotImplementedError()
|
|
150
|
+
|
|
151
|
+
def visitPolygonNode(self, vertices: list[tuple[Any, Any]], node: Node) -> Any:
|
|
152
|
+
# docstring is inherited from base class
|
|
153
|
+
raise NotImplementedError()
|
|
154
|
+
|
|
155
|
+
def visitRegionNode(self, pos: Any, node: Node) -> Any:
|
|
156
|
+
# docstring is inherited from base class
|
|
157
|
+
raise NotImplementedError()
|
|
158
|
+
|
|
143
159
|
def visitGlobNode(self, expression: Any, pattern: Any, node: Node) -> Any:
|
|
144
160
|
# docstring is inherited from base class
|
|
145
161
|
raise NotImplementedError()
|
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "29.2025.
|
|
2
|
+
__version__ = "29.2025.2800"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.2800
|
|
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: BSD 3-Clause License
|
|
@@ -8,7 +8,7 @@ lsst/pipe/base/_observation_dimension_packer.py,sha256=78Jg2OVFOdXIK62TS2Y3X4095
|
|
|
8
8
|
lsst/pipe/base/_quantumContext.py,sha256=gb60mTHbgOIEptYvJ64SaChvViXyeKJlG6kEHq4nYVw,19345
|
|
9
9
|
lsst/pipe/base/_status.py,sha256=tvKm-z_haZGksOR4nQ-ePJgbLag-e3t4nQY47yLFP2M,15741
|
|
10
10
|
lsst/pipe/base/_task_metadata.py,sha256=wKZJWWLBByaUMx0253Dre2P241mSM1U0CCywcZmoF4k,24978
|
|
11
|
-
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=
|
|
11
|
+
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=sXE87X0ZfsOm9Kqs7tK5ZIDOZuAS6YN38LHzVuR5hpM,72620
|
|
12
12
|
lsst/pipe/base/automatic_connection_constants.py,sha256=H5uuh1rYRpjndgPdb0dh1L_-OyLKdT6VWOZTAb__xCU,3298
|
|
13
13
|
lsst/pipe/base/caching_limited_butler.py,sha256=u1uJYzCE7OxW8MW8Xv2LDB9-Nuj-Ao8lBJcDttKrc1Y,7700
|
|
14
14
|
lsst/pipe/base/config.py,sha256=yNipVEc6awwhU_O9I01g20OnvQrs28dAwkXuI1hrlYE,11982
|
|
@@ -25,14 +25,14 @@ lsst/pipe/base/pipelineTask.py,sha256=K3GdjJLvy8A7I-jzQiERQZaYF7mC1LM3iB5TmUtbOC
|
|
|
25
25
|
lsst/pipe/base/prerequisite_helpers.py,sha256=WxfIGkF0Wlucp9mE3Wp3E6K2M6d66O0oZrWecRqn5CI,28312
|
|
26
26
|
lsst/pipe/base/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
lsst/pipe/base/quantum_graph_builder.py,sha256=ugTOV5Qe6iWlaX9Zm1HoNWfnFFhohSmIrSFkCFUVOZM,54808
|
|
28
|
-
lsst/pipe/base/quantum_graph_skeleton.py,sha256=
|
|
28
|
+
lsst/pipe/base/quantum_graph_skeleton.py,sha256=iBSVCAV1OznYd70Lg4bLn0nMqjW5m9-kH5eecPn8DYw,24964
|
|
29
29
|
lsst/pipe/base/quantum_provenance_graph.py,sha256=llXcqu-50dtjkt_sVqAhBU10htfkxMiiArNN0_GqL1g,93034
|
|
30
30
|
lsst/pipe/base/struct.py,sha256=Fa-UkpuXOxdzKWbHrMUkJYOszZuBXCm2NesXNR0IOPQ,5048
|
|
31
31
|
lsst/pipe/base/task.py,sha256=XHBd-7m1a4-6LgobBYA1DgY4H7EV-_RWKfxbhZbMmD4,15145
|
|
32
32
|
lsst/pipe/base/taskFactory.py,sha256=4GhN2DozPM8suBYIvoKN4E6VP0I3mYZHBjCUO5JcCGk,2901
|
|
33
33
|
lsst/pipe/base/testUtils.py,sha256=lSBKMhoKflbi8JkMNYfEqqHNl-rtFI8UYT3QneDYpLo,18477
|
|
34
34
|
lsst/pipe/base/utils.py,sha256=JmEt3l0xrh9uayKrSXuQEq12aXOhDr2YXmbYduaxCko,1940
|
|
35
|
-
lsst/pipe/base/version.py,sha256=
|
|
35
|
+
lsst/pipe/base/version.py,sha256=zkbtcIsz6tbu7rmamcut51DoG62vyYwam95urGw5Lis,55
|
|
36
36
|
lsst/pipe/base/cli/__init__.py,sha256=861tXIAW7SqtqNUYkjbeEdfg8lDswXsjJQca0gVCFz4,54
|
|
37
37
|
lsst/pipe/base/cli/_get_cli_subcommands.py,sha256=g_af64klRybBGKAg7fmBSZBdw2LYBAsFON_yQIMZON0,1289
|
|
38
38
|
lsst/pipe/base/cli/cmd/__init__.py,sha256=BGicstnryQ48rYcNRh4fa6Vy63ZIlZ_pPAEa17jhkwY,1519
|
|
@@ -83,16 +83,16 @@ lsst/pipe/base/tests/pipelineStepTester.py,sha256=KGxdB8gdVpSey2RUGURDIzIfPL-4qv
|
|
|
83
83
|
lsst/pipe/base/tests/simpleQGraph.py,sha256=G9C69caX8479JR9h48ERhOFvLTPJCoj5gKf_eRoaALQ,19660
|
|
84
84
|
lsst/pipe/base/tests/util.py,sha256=eWuIRz55HYgNmMkexinN9HjUFmPC3uapO8jMjcQY-ao,4010
|
|
85
85
|
lsst/pipe/base/tests/mocks/__init__.py,sha256=NrIJYDeYgR3HsOJXBEXi8EXDhhV7iw7dgwK9qlQ59PA,1551
|
|
86
|
-
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=
|
|
86
|
+
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=v33QZhZm-srXZAXZ8NbNKGN-_ql4AzaArBUk1lxhyss,7474
|
|
87
87
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=fqaJ-tB7K3jxlfCvCSnVd_GNrz-JhX7FB914h7nHLXc,29366
|
|
88
88
|
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=gC0czHURMk7PWj8N6dLxnY5V4HWX5i8ukb5SZbgWKy8,25257
|
|
89
|
-
lsst_pipe_base-29.2025.
|
|
90
|
-
lsst_pipe_base-29.2025.
|
|
91
|
-
lsst_pipe_base-29.2025.
|
|
92
|
-
lsst_pipe_base-29.2025.
|
|
93
|
-
lsst_pipe_base-29.2025.
|
|
94
|
-
lsst_pipe_base-29.2025.
|
|
95
|
-
lsst_pipe_base-29.2025.
|
|
96
|
-
lsst_pipe_base-29.2025.
|
|
97
|
-
lsst_pipe_base-29.2025.
|
|
98
|
-
lsst_pipe_base-29.2025.
|
|
89
|
+
lsst_pipe_base-29.2025.2800.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
90
|
+
lsst_pipe_base-29.2025.2800.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
91
|
+
lsst_pipe_base-29.2025.2800.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
92
|
+
lsst_pipe_base-29.2025.2800.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
93
|
+
lsst_pipe_base-29.2025.2800.dist-info/METADATA,sha256=rpezbW4ETyiwGgw7ttMrlVru-eZA_KG-Xax1jGXA5lE,2195
|
|
94
|
+
lsst_pipe_base-29.2025.2800.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
95
|
+
lsst_pipe_base-29.2025.2800.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
96
|
+
lsst_pipe_base-29.2025.2800.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
97
|
+
lsst_pipe_base-29.2025.2800.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
98
|
+
lsst_pipe_base-29.2025.2800.dist-info/RECORD,,
|
|
File without changes
|
{lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-29.2025.2600.dist-info → lsst_pipe_base-29.2025.2800.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|