lsst-pipe-base 29.2025.2900__py3-none-any.whl → 29.2025.3100__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/_datasetQueryConstraints.py +1 -1
- lsst/pipe/base/all_dimensions_quantum_graph_builder.py +6 -4
- lsst/pipe/base/connectionTypes.py +19 -19
- lsst/pipe/base/connections.py +2 -2
- lsst/pipe/base/exec_fixup_data_id.py +131 -0
- lsst/pipe/base/execution_graph_fixup.py +69 -0
- lsst/pipe/base/log_capture.py +227 -0
- lsst/pipe/base/mp_graph_executor.py +774 -0
- lsst/pipe/base/quantum_graph_builder.py +43 -42
- lsst/pipe/base/quantum_graph_executor.py +125 -0
- lsst/pipe/base/quantum_reports.py +334 -0
- lsst/pipe/base/script/transfer_from_graph.py +41 -29
- lsst/pipe/base/separable_pipeline_executor.py +296 -0
- lsst/pipe/base/simple_pipeline_executor.py +674 -0
- lsst/pipe/base/single_quantum_executor.py +636 -0
- lsst/pipe/base/taskFactory.py +18 -12
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/METADATA +1 -1
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/RECORD +27 -18
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/WHEEL +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/zip-safe +0 -0
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "29.2025.
|
|
2
|
+
__version__ = "29.2025.3100"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.3100
|
|
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
|
|
@@ -1,38 +1,47 @@
|
|
|
1
1
|
lsst/__init__.py,sha256=_2bZAHuDVAx7MM7KA7pt3DYp641NY4RzSoRAwesWKfU,67
|
|
2
2
|
lsst/pipe/__init__.py,sha256=_2bZAHuDVAx7MM7KA7pt3DYp641NY4RzSoRAwesWKfU,67
|
|
3
3
|
lsst/pipe/base/__init__.py,sha256=qFDZrrmu4MHbzwiPPm74AUtUgLkPYtz5d1tvVEGxbPg,1008
|
|
4
|
-
lsst/pipe/base/_datasetQueryConstraints.py,sha256=
|
|
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
6
|
lsst/pipe/base/_instrument.py,sha256=I9UTaj81krR1zkTZ1owfOPBzHN29PY3Egg7fIE5obxQ,30057
|
|
7
7
|
lsst/pipe/base/_observation_dimension_packer.py,sha256=78Jg2OVFOdXIK62TS2Y3X4095xqCzmiIx9o4TXyADYA,8027
|
|
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=mcaNSSGIzIJs_4FjBw0oPrfRR2KrtF_NYpAt5-LynVs,72679
|
|
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
|
|
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=inUDyzbM1sKMCtHaRkhx3dWSPHPBIDVMHOPhzB13Kdw,16720
|
|
17
|
+
lsst/pipe/base/connections.py,sha256=S_PgywIYoPlaCtGtDtD6S24yewVaPfdS_QgrhUAty7g,66725
|
|
18
18
|
lsst/pipe/base/dot_tools.py,sha256=o_bDp9vW-4PelE7kWodH6pWVIRuyGlTRFv-kR_YKfLo,13824
|
|
19
|
+
lsst/pipe/base/exec_fixup_data_id.py,sha256=UG-yZboZijOjrPh0bKnAjEYJMpRqGAIgNZxIDYVa0l0,5048
|
|
19
20
|
lsst/pipe/base/executionButlerBuilder.py,sha256=-vv-1aGm06RM4fJECjvJL0ZXHrwth7Hjt0jIfkKYY18,21254
|
|
21
|
+
lsst/pipe/base/execution_graph_fixup.py,sha256=_orQ_GT5f-VyRarcpaPD_cNEfo9AIWgum9HkMkcvNG8,2811
|
|
20
22
|
lsst/pipe/base/execution_reports.py,sha256=jYtWCD4PkEAeVUpKIxuiJJVgsCm7qiwCorWVgNHkVgU,17270
|
|
23
|
+
lsst/pipe/base/log_capture.py,sha256=tgJcq_eOIwywktagYXL0sCnafqNR0CJ7rfW09iXQ63k,9390
|
|
21
24
|
lsst/pipe/base/mermaid_tools.py,sha256=b_15oqCcxSom4ecMTDX8tfEtxe8W-juPVL65HOMywJ8,17695
|
|
25
|
+
lsst/pipe/base/mp_graph_executor.py,sha256=7l7W4tT9Ga3FLkEzcCw_aDQkuDo7h75vdm4sxT6nYdI,31659
|
|
22
26
|
lsst/pipe/base/pipeline.py,sha256=FVaiLhgw9Pzo-nzXKS0dLNafegP0AMZKLtPlSvOSkRU,37563
|
|
23
27
|
lsst/pipe/base/pipelineIR.py,sha256=DDOAYHnMP-iw021RDMYsZnvb21tWumLjYqO5d38q_Zk,44300
|
|
24
28
|
lsst/pipe/base/pipelineTask.py,sha256=K3GdjJLvy8A7I-jzQiERQZaYF7mC1LM3iB5TmUtbOCI,8394
|
|
25
29
|
lsst/pipe/base/prerequisite_helpers.py,sha256=bmiebQ4veSrypZgAXjmCBFfj8fUtPW9eRQaVShhxdBQ,28446
|
|
26
30
|
lsst/pipe/base/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
lsst/pipe/base/quantum_graph_builder.py,sha256=
|
|
31
|
+
lsst/pipe/base/quantum_graph_builder.py,sha256=IKh2WqfzmSyDoom7Ut7zuh3jlZQz-SPJ_bd4a3Q7CrE,54964
|
|
32
|
+
lsst/pipe/base/quantum_graph_executor.py,sha256=KOOjko2weju02oXnvWTvwXDxbPJp3U1F0KTgDSOJgKg,4342
|
|
28
33
|
lsst/pipe/base/quantum_graph_skeleton.py,sha256=iBSVCAV1OznYd70Lg4bLn0nMqjW5m9-kH5eecPn8DYw,24964
|
|
29
34
|
lsst/pipe/base/quantum_provenance_graph.py,sha256=llXcqu-50dtjkt_sVqAhBU10htfkxMiiArNN0_GqL1g,93034
|
|
35
|
+
lsst/pipe/base/quantum_reports.py,sha256=ambqr4CggvjVvVCcmHDrnEZgbbnYqkOMIMXWozl2JMo,11643
|
|
36
|
+
lsst/pipe/base/separable_pipeline_executor.py,sha256=w7-cZ9koJNDhEVu2lMXqjNMhZvFVn5QbJfsqvxHkQFE,11928
|
|
37
|
+
lsst/pipe/base/simple_pipeline_executor.py,sha256=5CIO9tS0PYeUJp7GGYi94SOFJnI6XMkUBx4WD2Qxq_Y,29571
|
|
38
|
+
lsst/pipe/base/single_quantum_executor.py,sha256=BDcG8qsNLmhqzmbqz92r0C5zLXf_gJ25VhT2bueEYoU,28140
|
|
30
39
|
lsst/pipe/base/struct.py,sha256=Fa-UkpuXOxdzKWbHrMUkJYOszZuBXCm2NesXNR0IOPQ,5048
|
|
31
40
|
lsst/pipe/base/task.py,sha256=XHBd-7m1a4-6LgobBYA1DgY4H7EV-_RWKfxbhZbMmD4,15145
|
|
32
|
-
lsst/pipe/base/taskFactory.py,sha256=
|
|
41
|
+
lsst/pipe/base/taskFactory.py,sha256=MsDGECJqZLSZk8SGhpuVhNaP32UWuNvxZiDcZExPFG8,3412
|
|
33
42
|
lsst/pipe/base/testUtils.py,sha256=lSBKMhoKflbi8JkMNYfEqqHNl-rtFI8UYT3QneDYpLo,18477
|
|
34
43
|
lsst/pipe/base/utils.py,sha256=JmEt3l0xrh9uayKrSXuQEq12aXOhDr2YXmbYduaxCko,1940
|
|
35
|
-
lsst/pipe/base/version.py,sha256=
|
|
44
|
+
lsst/pipe/base/version.py,sha256=ieqM-HeyuKM3_4zduaocPJMVYG02uci4CjCfGX5PncI,55
|
|
36
45
|
lsst/pipe/base/cli/__init__.py,sha256=861tXIAW7SqtqNUYkjbeEdfg8lDswXsjJQca0gVCFz4,54
|
|
37
46
|
lsst/pipe/base/cli/_get_cli_subcommands.py,sha256=g_af64klRybBGKAg7fmBSZBdw2LYBAsFON_yQIMZON0,1289
|
|
38
47
|
lsst/pipe/base/cli/cmd/__init__.py,sha256=BGicstnryQ48rYcNRh4fa6Vy63ZIlZ_pPAEa17jhkwY,1519
|
|
@@ -74,7 +83,7 @@ lsst/pipe/base/pipeline_graph/visualization/_status_annotator.py,sha256=dp7PXl9C
|
|
|
74
83
|
lsst/pipe/base/script/__init__.py,sha256=cLEXE7aq5UZ0juL_ScmRw0weFgp4tDgwEX_ts-NEYic,1522
|
|
75
84
|
lsst/pipe/base/script/register_instrument.py,sha256=TRC2r2tSoYBNWNVQya01ELxAtGH8WVk9Ya-uNgCIL5U,2426
|
|
76
85
|
lsst/pipe/base/script/retrieve_artifacts_for_quanta.py,sha256=pYI0wNl5PU8ImgzWfGEDrRz3PSKSg2szWLEIVKdm7Og,3939
|
|
77
|
-
lsst/pipe/base/script/transfer_from_graph.py,sha256=
|
|
86
|
+
lsst/pipe/base/script/transfer_from_graph.py,sha256=TrbjifaJxmkGTON-3s0vaF7XUdx7K8VMnuy3-RMSbC8,7086
|
|
78
87
|
lsst/pipe/base/script/utils.py,sha256=zNqpHG3kXA8OaNXnwYIo0Hu_LCie1qoBAARAME3WEjs,3739
|
|
79
88
|
lsst/pipe/base/script/zip_from_graph.py,sha256=rbH_5Jk7Yc-YFD3X4mbDE4Vzddtu5y90Z77wha94mdM,3228
|
|
80
89
|
lsst/pipe/base/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -86,13 +95,13 @@ lsst/pipe/base/tests/mocks/__init__.py,sha256=NrIJYDeYgR3HsOJXBEXi8EXDhhV7iw7dgw
|
|
|
86
95
|
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=v33QZhZm-srXZAXZ8NbNKGN-_ql4AzaArBUk1lxhyss,7474
|
|
87
96
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=fqaJ-tB7K3jxlfCvCSnVd_GNrz-JhX7FB914h7nHLXc,29366
|
|
88
97
|
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.
|
|
98
|
+
lsst_pipe_base-29.2025.3100.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
99
|
+
lsst_pipe_base-29.2025.3100.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
100
|
+
lsst_pipe_base-29.2025.3100.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
101
|
+
lsst_pipe_base-29.2025.3100.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
102
|
+
lsst_pipe_base-29.2025.3100.dist-info/METADATA,sha256=4fM2ch4w2vRlTby47XlkrtKiE3dufRW-s1LobpETtZk,2195
|
|
103
|
+
lsst_pipe_base-29.2025.3100.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
+
lsst_pipe_base-29.2025.3100.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
105
|
+
lsst_pipe_base-29.2025.3100.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
106
|
+
lsst_pipe_base-29.2025.3100.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
107
|
+
lsst_pipe_base-29.2025.3100.dist-info/RECORD,,
|
|
File without changes
|
{lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-29.2025.2900.dist-info → lsst_pipe_base-29.2025.3100.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|