lsst-pipe-base 29.2025.3100__py3-none-any.whl → 29.2025.3200__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/__init__.py +0 -1
- lsst/pipe/base/all_dimensions_quantum_graph_builder.py +4 -42
- lsst/pipe/base/caching_limited_butler.py +8 -4
- lsst/pipe/base/graph/graphSummary.py +4 -4
- lsst/pipe/base/mp_graph_executor.py +21 -9
- lsst/pipe/base/pipeline_graph/_pipeline_graph.py +40 -10
- lsst/pipe/base/pipeline_graph/_tasks.py +106 -0
- lsst/pipe/base/pipeline_graph/io.py +1 -1
- lsst/pipe/base/quantum_graph_builder.py +42 -16
- lsst/pipe/base/quantum_graph_skeleton.py +60 -1
- lsst/pipe/base/single_quantum_executor.py +10 -11
- lsst/pipe/base/tests/in_memory_limited_butler.py +223 -0
- lsst/pipe/base/tests/mocks/__init__.py +1 -0
- lsst/pipe/base/tests/mocks/_in_memory_repo.py +357 -0
- lsst/pipe/base/tests/mocks/_pipeline_task.py +19 -2
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/METADATA +1 -1
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/RECORD +26 -25
- lsst/pipe/base/executionButlerBuilder.py +0 -493
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/WHEEL +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.3100.dist-info → lsst_pipe_base-29.2025.3200.dist-info}/zip-safe +0 -0
|
@@ -41,6 +41,8 @@ __all__ = (
|
|
|
41
41
|
|
|
42
42
|
import dataclasses
|
|
43
43
|
import logging
|
|
44
|
+
import signal
|
|
45
|
+
import time
|
|
44
46
|
from collections.abc import Collection, Iterable, Mapping
|
|
45
47
|
from typing import TYPE_CHECKING, Any, ClassVar, TypeVar
|
|
46
48
|
|
|
@@ -92,7 +94,7 @@ class ForcedFailure:
|
|
|
92
94
|
|
|
93
95
|
memory_required: Quantity | None = None
|
|
94
96
|
"""If not `None`, this failure simulates an out-of-memory failure by
|
|
95
|
-
raising only if this value exceeds `ExecutionResources.max_mem`.
|
|
97
|
+
raising only if this value exceeds `ExecutionResources.max_mem`.f
|
|
96
98
|
"""
|
|
97
99
|
|
|
98
100
|
def set_config(self, config: MockPipelineTaskConfig) -> None:
|
|
@@ -181,6 +183,8 @@ class BaseTestPipelineTaskConfig(PipelineTaskConfig, pipelineConnections=BaseTes
|
|
|
181
183
|
),
|
|
182
184
|
)
|
|
183
185
|
|
|
186
|
+
fail_signal = Field[int](dtype=int, optional=True, doc="Signal to raise instead of an exception.")
|
|
187
|
+
|
|
184
188
|
memory_required = Field[str](
|
|
185
189
|
dtype=str,
|
|
186
190
|
default=None,
|
|
@@ -192,6 +196,12 @@ class BaseTestPipelineTaskConfig(PipelineTaskConfig, pipelineConnections=BaseTes
|
|
|
192
196
|
),
|
|
193
197
|
)
|
|
194
198
|
|
|
199
|
+
sleep = Field[float](
|
|
200
|
+
dtype=float,
|
|
201
|
+
default=0.0,
|
|
202
|
+
doc="Time to sleep (seconds) before mock execution reading inputs or failing.",
|
|
203
|
+
)
|
|
204
|
+
|
|
195
205
|
def data_id_match(self) -> DataIdMatch | None:
|
|
196
206
|
if not self.fail_condition:
|
|
197
207
|
return None
|
|
@@ -300,6 +310,9 @@ class BaseTestPipelineTask(PipelineTask):
|
|
|
300
310
|
|
|
301
311
|
_LOG.info("Mocking execution of task '%s' on quantum %s", self.getName(), quantum.dataId)
|
|
302
312
|
|
|
313
|
+
if self.config.sleep:
|
|
314
|
+
time.sleep(self.config.sleep)
|
|
315
|
+
|
|
303
316
|
assert quantum.dataId is not None, "Quantum DataId cannot be None"
|
|
304
317
|
|
|
305
318
|
# Possibly raise an exception.
|
|
@@ -374,7 +387,11 @@ class BaseTestPipelineTask(PipelineTask):
|
|
|
374
387
|
Quantum producing the error.
|
|
375
388
|
"""
|
|
376
389
|
message = f"Simulated failure: task={self.getName()} dataId={quantum.dataId}"
|
|
377
|
-
|
|
390
|
+
# Type annotations for optional config fields are broken, so MyPy
|
|
391
|
+
# doesn't think fail_signal could be None.
|
|
392
|
+
if self.config.fail_signal is not None:
|
|
393
|
+
signal.raise_signal(signal.Signals(self.config.fail_signal))
|
|
394
|
+
elif self.fail_exception is AnnotatedPartialOutputsError: # type: ignore[unreachable]
|
|
378
395
|
# This exception is expected to always chain another.
|
|
379
396
|
try:
|
|
380
397
|
raise MockAlgorithmError(message)
|
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "29.2025.
|
|
2
|
+
__version__ = "29.2025.3200"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.3200
|
|
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,6 +1,6 @@
|
|
|
1
1
|
lsst/__init__.py,sha256=_2bZAHuDVAx7MM7KA7pt3DYp641NY4RzSoRAwesWKfU,67
|
|
2
2
|
lsst/pipe/__init__.py,sha256=_2bZAHuDVAx7MM7KA7pt3DYp641NY4RzSoRAwesWKfU,67
|
|
3
|
-
lsst/pipe/base/__init__.py,sha256=
|
|
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
6
|
lsst/pipe/base/_instrument.py,sha256=I9UTaj81krR1zkTZ1owfOPBzHN29PY3Egg7fIE5obxQ,30057
|
|
@@ -8,40 +8,39 @@ 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=nazY74jrdSCr6CFfPp78JecM_-udW95EYP7grLPO2hg,70830
|
|
12
12
|
lsst/pipe/base/automatic_connection_constants.py,sha256=H5uuh1rYRpjndgPdb0dh1L_-OyLKdT6VWOZTAb__xCU,3298
|
|
13
|
-
lsst/pipe/base/caching_limited_butler.py,sha256=
|
|
13
|
+
lsst/pipe/base/caching_limited_butler.py,sha256=x_e4EXYODcVJV8BkLzvUTu2yCd6dqM1rJ-xwLISadeg,7798
|
|
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=inUDyzbM1sKMCtHaRkhx3dWSPHPBIDVMHOPhzB13Kdw,16720
|
|
17
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
19
|
lsst/pipe/base/exec_fixup_data_id.py,sha256=UG-yZboZijOjrPh0bKnAjEYJMpRqGAIgNZxIDYVa0l0,5048
|
|
20
|
-
lsst/pipe/base/executionButlerBuilder.py,sha256=-vv-1aGm06RM4fJECjvJL0ZXHrwth7Hjt0jIfkKYY18,21254
|
|
21
20
|
lsst/pipe/base/execution_graph_fixup.py,sha256=_orQ_GT5f-VyRarcpaPD_cNEfo9AIWgum9HkMkcvNG8,2811
|
|
22
21
|
lsst/pipe/base/execution_reports.py,sha256=jYtWCD4PkEAeVUpKIxuiJJVgsCm7qiwCorWVgNHkVgU,17270
|
|
23
22
|
lsst/pipe/base/log_capture.py,sha256=tgJcq_eOIwywktagYXL0sCnafqNR0CJ7rfW09iXQ63k,9390
|
|
24
23
|
lsst/pipe/base/mermaid_tools.py,sha256=b_15oqCcxSom4ecMTDX8tfEtxe8W-juPVL65HOMywJ8,17695
|
|
25
|
-
lsst/pipe/base/mp_graph_executor.py,sha256=
|
|
24
|
+
lsst/pipe/base/mp_graph_executor.py,sha256=JIlL04eucKv6Vr0-ZGO8-ABp1Ll2s-P-EsWJipdk4AQ,31762
|
|
26
25
|
lsst/pipe/base/pipeline.py,sha256=FVaiLhgw9Pzo-nzXKS0dLNafegP0AMZKLtPlSvOSkRU,37563
|
|
27
26
|
lsst/pipe/base/pipelineIR.py,sha256=DDOAYHnMP-iw021RDMYsZnvb21tWumLjYqO5d38q_Zk,44300
|
|
28
27
|
lsst/pipe/base/pipelineTask.py,sha256=K3GdjJLvy8A7I-jzQiERQZaYF7mC1LM3iB5TmUtbOCI,8394
|
|
29
28
|
lsst/pipe/base/prerequisite_helpers.py,sha256=bmiebQ4veSrypZgAXjmCBFfj8fUtPW9eRQaVShhxdBQ,28446
|
|
30
29
|
lsst/pipe/base/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
lsst/pipe/base/quantum_graph_builder.py,sha256=
|
|
30
|
+
lsst/pipe/base/quantum_graph_builder.py,sha256=wBR4NZhToz40eXHQ_LRGv-Lf8vYwSsVRpxpVlaM8w9Y,56361
|
|
32
31
|
lsst/pipe/base/quantum_graph_executor.py,sha256=KOOjko2weju02oXnvWTvwXDxbPJp3U1F0KTgDSOJgKg,4342
|
|
33
|
-
lsst/pipe/base/quantum_graph_skeleton.py,sha256=
|
|
32
|
+
lsst/pipe/base/quantum_graph_skeleton.py,sha256=pUaeuBFUsG3r2ZiovgMuPDMmlujlBtuHicU6dWF0Hz4,27737
|
|
34
33
|
lsst/pipe/base/quantum_provenance_graph.py,sha256=llXcqu-50dtjkt_sVqAhBU10htfkxMiiArNN0_GqL1g,93034
|
|
35
34
|
lsst/pipe/base/quantum_reports.py,sha256=ambqr4CggvjVvVCcmHDrnEZgbbnYqkOMIMXWozl2JMo,11643
|
|
36
35
|
lsst/pipe/base/separable_pipeline_executor.py,sha256=w7-cZ9koJNDhEVu2lMXqjNMhZvFVn5QbJfsqvxHkQFE,11928
|
|
37
36
|
lsst/pipe/base/simple_pipeline_executor.py,sha256=5CIO9tS0PYeUJp7GGYi94SOFJnI6XMkUBx4WD2Qxq_Y,29571
|
|
38
|
-
lsst/pipe/base/single_quantum_executor.py,sha256=
|
|
37
|
+
lsst/pipe/base/single_quantum_executor.py,sha256=IE4zMsEHJoGuMm90aTQiktOo28BfDAWOdJce5gk_-eQ,28255
|
|
39
38
|
lsst/pipe/base/struct.py,sha256=Fa-UkpuXOxdzKWbHrMUkJYOszZuBXCm2NesXNR0IOPQ,5048
|
|
40
39
|
lsst/pipe/base/task.py,sha256=XHBd-7m1a4-6LgobBYA1DgY4H7EV-_RWKfxbhZbMmD4,15145
|
|
41
40
|
lsst/pipe/base/taskFactory.py,sha256=MsDGECJqZLSZk8SGhpuVhNaP32UWuNvxZiDcZExPFG8,3412
|
|
42
41
|
lsst/pipe/base/testUtils.py,sha256=lSBKMhoKflbi8JkMNYfEqqHNl-rtFI8UYT3QneDYpLo,18477
|
|
43
42
|
lsst/pipe/base/utils.py,sha256=JmEt3l0xrh9uayKrSXuQEq12aXOhDr2YXmbYduaxCko,1940
|
|
44
|
-
lsst/pipe/base/version.py,sha256=
|
|
43
|
+
lsst/pipe/base/version.py,sha256=5kA_2hRyFYLCSuDYZQBSx1jsWCdezZbf05_1pktQdgw,55
|
|
45
44
|
lsst/pipe/base/cli/__init__.py,sha256=861tXIAW7SqtqNUYkjbeEdfg8lDswXsjJQca0gVCFz4,54
|
|
46
45
|
lsst/pipe/base/cli/_get_cli_subcommands.py,sha256=g_af64klRybBGKAg7fmBSZBdw2LYBAsFON_yQIMZON0,1289
|
|
47
46
|
lsst/pipe/base/cli/cmd/__init__.py,sha256=BGicstnryQ48rYcNRh4fa6Vy63ZIlZ_pPAEa17jhkwY,1519
|
|
@@ -56,7 +55,7 @@ lsst/pipe/base/graph/_implDetails.py,sha256=QQHVnCW78UnIbALXX_v7EW7g6MTUTuuR1Q_S
|
|
|
56
55
|
lsst/pipe/base/graph/_loadHelpers.py,sha256=qUfjIgFezaXZRCFV7PFzmz1SSKFjRWOMWJePuyKiD24,12064
|
|
57
56
|
lsst/pipe/base/graph/_versionDeserializers.py,sha256=pXk63v6jkQSghSOoU1hpPkxVa82WVGitm2jrop85SeM,27992
|
|
58
57
|
lsst/pipe/base/graph/graph.py,sha256=CIM7ij7I51rVtVj0jd5dPgOWByALoFZh2Cp61mOEnyQ,74200
|
|
59
|
-
lsst/pipe/base/graph/graphSummary.py,sha256=
|
|
58
|
+
lsst/pipe/base/graph/graphSummary.py,sha256=S3O84MddiXrmOD7U9Ek7rR22kdveGLhsor69FRvDjh4,5032
|
|
60
59
|
lsst/pipe/base/graph/quantumNode.py,sha256=l4mslxBgyUzBAqwjpx6XRP-UPxe-oRMxHJWt-_y3Dm0,7196
|
|
61
60
|
lsst/pipe/base/pipeline_graph/__init__.py,sha256=yTEuvlzbeKIHIm7GeRmGSsma1wpZFNv8j12WfSH-deY,1516
|
|
62
61
|
lsst/pipe/base/pipeline_graph/__main__.py,sha256=E6ugEwJbds22wjgcfcgzeyO04JofQwVhn_Y8kZYY1lQ,20769
|
|
@@ -65,11 +64,11 @@ lsst/pipe/base/pipeline_graph/_edges.py,sha256=VQSG74Er5CiyIDyodfxixVaSXfh-tSEPk
|
|
|
65
64
|
lsst/pipe/base/pipeline_graph/_exceptions.py,sha256=3jvCXms0_5ThLGtsOlKxsI1vWiq3gY4hba8fRBW0tgI,3943
|
|
66
65
|
lsst/pipe/base/pipeline_graph/_mapping_views.py,sha256=9nLKPA8j7sS09haShbJnEtGXbb4vy_cWpbLeMLBmVvs,9194
|
|
67
66
|
lsst/pipe/base/pipeline_graph/_nodes.py,sha256=WcP31yIRCNvFh9lhEtKJ_8bsgX2u_B_qwyV7DaHJ8JI,3376
|
|
68
|
-
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=
|
|
67
|
+
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=G-P3r-AHBM1cMP7ex75M-Xtu4HlQiaIqly3er6BZC0A,121536
|
|
69
68
|
lsst/pipe/base/pipeline_graph/_task_subsets.py,sha256=lLvcndSGcZigteWd4eeAM8LxQ1lHPBoysY8PjJTxx1c,13244
|
|
70
|
-
lsst/pipe/base/pipeline_graph/_tasks.py,sha256=
|
|
69
|
+
lsst/pipe/base/pipeline_graph/_tasks.py,sha256=XsqY0Z8WPpryJHaJtcIfqDBARzKeNT7MWdX-16sbXXY,42698
|
|
71
70
|
lsst/pipe/base/pipeline_graph/expressions.py,sha256=MZ0qxGA4ctu_WqVjdjjezZF8Jd5174PWbio7EF2wdl0,7717
|
|
72
|
-
lsst/pipe/base/pipeline_graph/io.py,sha256=
|
|
71
|
+
lsst/pipe/base/pipeline_graph/io.py,sha256=8s20Z0hYhO8AZpDJJrd6LR2iBx7ICm9uL7O7PsQMT0M,30925
|
|
73
72
|
lsst/pipe/base/pipeline_graph/visualization/__init__.py,sha256=qQctfWuFpcmgRdgu8Y6OsJ_pXpLKrCK-alqfVtIecls,1551
|
|
74
73
|
lsst/pipe/base/pipeline_graph/visualization/_dot.py,sha256=quja94wafmbCPJvC7HrHRE0Dsvhgz1Odx2MvVEpZup0,12936
|
|
75
74
|
lsst/pipe/base/pipeline_graph/visualization/_formatting.py,sha256=NsBxXwdmISitr8_4wPc-T8CqVB-Mq4pv7DmUefFm3JU,17845
|
|
@@ -87,21 +86,23 @@ lsst/pipe/base/script/transfer_from_graph.py,sha256=TrbjifaJxmkGTON-3s0vaF7XUdx7
|
|
|
87
86
|
lsst/pipe/base/script/utils.py,sha256=zNqpHG3kXA8OaNXnwYIo0Hu_LCie1qoBAARAME3WEjs,3739
|
|
88
87
|
lsst/pipe/base/script/zip_from_graph.py,sha256=rbH_5Jk7Yc-YFD3X4mbDE4Vzddtu5y90Z77wha94mdM,3228
|
|
89
88
|
lsst/pipe/base/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
lsst/pipe/base/tests/in_memory_limited_butler.py,sha256=UzLh416H67nCUhD9y3cniAAjY7VojvhOLjF3gHHgjA4,8679
|
|
90
90
|
lsst/pipe/base/tests/no_dimensions.py,sha256=58UpyRN8cLAMZtkOmjTm3dJZyRFRekotQ-7-OgEfiAI,4710
|
|
91
91
|
lsst/pipe/base/tests/pipelineStepTester.py,sha256=KGxdB8gdVpSey2RUGURDIzIfPL-4qvQCsBpMrhG4Z2M,7208
|
|
92
92
|
lsst/pipe/base/tests/simpleQGraph.py,sha256=G9C69caX8479JR9h48ERhOFvLTPJCoj5gKf_eRoaALQ,19660
|
|
93
93
|
lsst/pipe/base/tests/util.py,sha256=eWuIRz55HYgNmMkexinN9HjUFmPC3uapO8jMjcQY-ao,4010
|
|
94
|
-
lsst/pipe/base/tests/mocks/__init__.py,sha256=
|
|
94
|
+
lsst/pipe/base/tests/mocks/__init__.py,sha256=YheEqtwDsjkqLNLCYbDrbZmLj9y942fOWC_xKF3xmCk,1582
|
|
95
95
|
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=v33QZhZm-srXZAXZ8NbNKGN-_ql4AzaArBUk1lxhyss,7474
|
|
96
|
-
lsst/pipe/base/tests/mocks/
|
|
96
|
+
lsst/pipe/base/tests/mocks/_in_memory_repo.py,sha256=HY6eAd8uwmYgSN_u4FGC-Vnum87ioyYFAN-NR_AaXGw,16663
|
|
97
|
+
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=xa2vy3HuMQifV0KR5sKfKRySqxSFhy-f1cP4bJ9EXZg,30010
|
|
97
98
|
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=gC0czHURMk7PWj8N6dLxnY5V4HWX5i8ukb5SZbgWKy8,25257
|
|
98
|
-
lsst_pipe_base-29.2025.
|
|
99
|
-
lsst_pipe_base-29.2025.
|
|
100
|
-
lsst_pipe_base-29.2025.
|
|
101
|
-
lsst_pipe_base-29.2025.
|
|
102
|
-
lsst_pipe_base-29.2025.
|
|
103
|
-
lsst_pipe_base-29.2025.
|
|
104
|
-
lsst_pipe_base-29.2025.
|
|
105
|
-
lsst_pipe_base-29.2025.
|
|
106
|
-
lsst_pipe_base-29.2025.
|
|
107
|
-
lsst_pipe_base-29.2025.
|
|
99
|
+
lsst_pipe_base-29.2025.3200.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
100
|
+
lsst_pipe_base-29.2025.3200.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
101
|
+
lsst_pipe_base-29.2025.3200.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
102
|
+
lsst_pipe_base-29.2025.3200.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
103
|
+
lsst_pipe_base-29.2025.3200.dist-info/METADATA,sha256=8b5YxH155wm2It5u5ImgbmItgGGvEPMSIY_y76oEF7M,2195
|
|
104
|
+
lsst_pipe_base-29.2025.3200.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
105
|
+
lsst_pipe_base-29.2025.3200.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
106
|
+
lsst_pipe_base-29.2025.3200.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
107
|
+
lsst_pipe_base-29.2025.3200.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
108
|
+
lsst_pipe_base-29.2025.3200.dist-info/RECORD,,
|