lsst-pipe-base 29.2025.1100__py3-none-any.whl → 29.2025.1200__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 +4 -0
- lsst/pipe/base/connections.py +179 -2
- lsst/pipe/base/pipeline_graph/visualization/_mermaid.py +10 -4
- lsst/pipe/base/quantum_graph_builder.py +91 -60
- lsst/pipe/base/quantum_graph_skeleton.py +20 -0
- lsst/pipe/base/quantum_provenance_graph.py +790 -421
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/METADATA +4 -3
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/RECORD +17 -17
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/WHEEL +1 -1
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/LICENSE +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.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.1200"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.1200
|
|
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
|
|
@@ -33,7 +33,8 @@ Requires-Dist: frozendict
|
|
|
33
33
|
Provides-Extra: test
|
|
34
34
|
Requires-Dist: pytest>=3.2; extra == "test"
|
|
35
35
|
Provides-Extra: mermaid
|
|
36
|
-
Requires-Dist: mermaid; extra == "mermaid"
|
|
36
|
+
Requires-Dist: mermaid-py>=0.7.1; extra == "mermaid"
|
|
37
|
+
Dynamic: license-file
|
|
37
38
|
|
|
38
39
|
# lsst-pipe-base
|
|
39
40
|
|
|
@@ -8,13 +8,13 @@ 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=t9jiM0YkL4cAJ1hokRJ4FFntijW86fRWbb_5bKaCDYk,15222
|
|
10
10
|
lsst/pipe/base/_task_metadata.py,sha256=SfM4L07Pe5itBDCsNh-XjdQvlKLY5LBcG6lpdtpMxHA,24968
|
|
11
|
-
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=
|
|
11
|
+
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=xG4WbpgHo_4w5xzLeii95IuNbOCJ0kkv6lQi3tm6Gyg,53057
|
|
12
12
|
lsst/pipe/base/automatic_connection_constants.py,sha256=H5uuh1rYRpjndgPdb0dh1L_-OyLKdT6VWOZTAb__xCU,3298
|
|
13
13
|
lsst/pipe/base/caching_limited_butler.py,sha256=ZlvjznhHMuKi_0JkVa6WlCwhDXRSOozCcxpOHHSRMIQ,7311
|
|
14
14
|
lsst/pipe/base/config.py,sha256=yNipVEc6awwhU_O9I01g20OnvQrs28dAwkXuI1hrlYE,11982
|
|
15
15
|
lsst/pipe/base/configOverrides.py,sha256=B0An8EaX76VzWnC5dJxvyZ2AhVzawMtq7qlE9ma5lkc,14661
|
|
16
16
|
lsst/pipe/base/connectionTypes.py,sha256=5QbyL7MAikohjXimXbmtPWryjLCZZXlS_vPzIWy5mzI,16708
|
|
17
|
-
lsst/pipe/base/connections.py,sha256=
|
|
17
|
+
lsst/pipe/base/connections.py,sha256=zzKyUMrwCv9GQYKqLi8OQ_Ez849BDr8QtRgFLX1aeJU,59208
|
|
18
18
|
lsst/pipe/base/dot_tools.py,sha256=o_bDp9vW-4PelE7kWodH6pWVIRuyGlTRFv-kR_YKfLo,13824
|
|
19
19
|
lsst/pipe/base/executionButlerBuilder.py,sha256=-vv-1aGm06RM4fJECjvJL0ZXHrwth7Hjt0jIfkKYY18,21254
|
|
20
20
|
lsst/pipe/base/execution_reports.py,sha256=jYtWCD4PkEAeVUpKIxuiJJVgsCm7qiwCorWVgNHkVgU,17270
|
|
@@ -24,15 +24,15 @@ lsst/pipe/base/pipelineIR.py,sha256=-tHyvnc3B9fTEqMh3wXYiTfYI4O5jOk_G0_G9YhPN6U,
|
|
|
24
24
|
lsst/pipe/base/pipelineTask.py,sha256=K3GdjJLvy8A7I-jzQiERQZaYF7mC1LM3iB5TmUtbOCI,8394
|
|
25
25
|
lsst/pipe/base/prerequisite_helpers.py,sha256=WxfIGkF0Wlucp9mE3Wp3E6K2M6d66O0oZrWecRqn5CI,28312
|
|
26
26
|
lsst/pipe/base/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
lsst/pipe/base/quantum_graph_builder.py,sha256=
|
|
28
|
-
lsst/pipe/base/quantum_graph_skeleton.py,sha256=
|
|
29
|
-
lsst/pipe/base/quantum_provenance_graph.py,sha256=
|
|
27
|
+
lsst/pipe/base/quantum_graph_builder.py,sha256=zn--NtuypWss_-FgyLm-i2a98d_-c1g5hWJnv-q4VSU,54695
|
|
28
|
+
lsst/pipe/base/quantum_graph_skeleton.py,sha256=QML_p5wLcfwOpegfQR0H7yJJXuV_UqHkksFjkHQII6s,24183
|
|
29
|
+
lsst/pipe/base/quantum_provenance_graph.py,sha256=YkYP8-ooKunZ2IHIkOlchmTu0-fM-evUa7zzaJ_5524,91900
|
|
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=Q55pqojE5GgOP1ODSUiZGmFU6sD87FAaQ-iGrKq2N5Y,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
|
|
@@ -65,7 +65,7 @@ lsst/pipe/base/pipeline_graph/visualization/_dot.py,sha256=quja94wafmbCPJvC7HrHR
|
|
|
65
65
|
lsst/pipe/base/pipeline_graph/visualization/_formatting.py,sha256=_AWjp73iv-KQIFZ7fSvyyv-a5TYJSVtAenpT8pc3T5M,8319
|
|
66
66
|
lsst/pipe/base/pipeline_graph/visualization/_layout.py,sha256=aMFl2Sgw_2-AfCBr_JBIWSs7VbSfSP7Nuol0mP9lkUo,17157
|
|
67
67
|
lsst/pipe/base/pipeline_graph/visualization/_merge.py,sha256=cBKhNjgymDkzYtVutrXd9IGa-eE4Q9jnHO9F18e64dY,15435
|
|
68
|
-
lsst/pipe/base/pipeline_graph/visualization/_mermaid.py,sha256=
|
|
68
|
+
lsst/pipe/base/pipeline_graph/visualization/_mermaid.py,sha256=YC86ImEha6SIbHU-ZwTwHsCM-LqU64YZoMfLuxy0x_M,20576
|
|
69
69
|
lsst/pipe/base/pipeline_graph/visualization/_options.py,sha256=UNzPiTKU9x0PRiHr6cOiKTHk2s0R_LbKipZPezxsGGc,4862
|
|
70
70
|
lsst/pipe/base/pipeline_graph/visualization/_printer.py,sha256=yJMRJ-aXd3nYDgs1FqS2l_hzNbQ50HUVm55VVaNi71s,16537
|
|
71
71
|
lsst/pipe/base/pipeline_graph/visualization/_show.py,sha256=l0Ybq-bcdxBhgrf84rxiDGpLAHCOIX2uow418gTKbxA,9507
|
|
@@ -83,13 +83,13 @@ lsst/pipe/base/tests/mocks/__init__.py,sha256=NrIJYDeYgR3HsOJXBEXi8EXDhhV7iw7dgw
|
|
|
83
83
|
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=MRGZUSD6ES0EiVG7kOIGZaJbZsaSIXB2M6tI9RpdUAc,6491
|
|
84
84
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=fqaJ-tB7K3jxlfCvCSnVd_GNrz-JhX7FB914h7nHLXc,29366
|
|
85
85
|
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=JvUmyXQC5DwOkFoLHkJk6u0ldn1VgZVVjh9GjpXRGg0,25211
|
|
86
|
-
lsst_pipe_base-29.2025.
|
|
87
|
-
lsst_pipe_base-29.2025.
|
|
88
|
-
lsst_pipe_base-29.2025.
|
|
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.
|
|
86
|
+
lsst_pipe_base-29.2025.1200.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
87
|
+
lsst_pipe_base-29.2025.1200.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
88
|
+
lsst_pipe_base-29.2025.1200.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
89
|
+
lsst_pipe_base-29.2025.1200.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
90
|
+
lsst_pipe_base-29.2025.1200.dist-info/METADATA,sha256=KponDzhEYBsgdlPOBv8YH9fnDaV87RMrHutmRB96st4,2172
|
|
91
|
+
lsst_pipe_base-29.2025.1200.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
|
|
92
|
+
lsst_pipe_base-29.2025.1200.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
93
|
+
lsst_pipe_base-29.2025.1200.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
94
|
+
lsst_pipe_base-29.2025.1200.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
95
|
+
lsst_pipe_base-29.2025.1200.dist-info/RECORD,,
|
{lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-29.2025.1100.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|