lsst-pipe-base 29.2025.2100__py3-none-any.whl → 29.2025.2300__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/_task_metadata.py +1 -1
- lsst/pipe/base/graph/graphSummary.py +2 -2
- lsst/pipe/base/pipeline_graph/_dataset_types.py +18 -11
- lsst/pipe/base/pipeline_graph/_edges.py +13 -11
- lsst/pipe/base/pipeline_graph/_pipeline_graph.py +1 -1
- lsst/pipe/base/tests/mocks/_storage_class.py +3 -3
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/METADATA +1 -1
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/RECORD +17 -17
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/WHEEL +1 -1
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/zip-safe +0 -0
lsst/pipe/base/_task_metadata.py
CHANGED
|
@@ -677,7 +677,7 @@ class TaskMetadata(BaseModel):
|
|
|
677
677
|
return super().model_copy(*args, **kwargs)
|
|
678
678
|
|
|
679
679
|
@classmethod
|
|
680
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc]
|
|
680
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc, override]
|
|
681
681
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
682
682
|
return super().model_construct(*args, **kwargs)
|
|
683
683
|
|
|
@@ -66,7 +66,7 @@ class QgraphTaskSummary(pydantic.BaseModel):
|
|
|
66
66
|
return super().model_copy(*args, **kwargs)
|
|
67
67
|
|
|
68
68
|
@classmethod
|
|
69
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any:
|
|
69
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[override]
|
|
70
70
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
71
71
|
return super().model_construct(*args, **kwargs)
|
|
72
72
|
|
|
@@ -121,7 +121,7 @@ class QgraphSummary(pydantic.BaseModel):
|
|
|
121
121
|
return super().model_copy(*args, **kwargs)
|
|
122
122
|
|
|
123
123
|
@classmethod
|
|
124
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any:
|
|
124
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[override]
|
|
125
125
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
126
126
|
return super().model_construct(*args, **kwargs)
|
|
127
127
|
|
|
@@ -60,12 +60,13 @@ class DatasetTypeNode:
|
|
|
60
60
|
"""
|
|
61
61
|
|
|
62
62
|
dataset_type: DatasetType
|
|
63
|
-
"""Common definition of this dataset type for the graph
|
|
63
|
+
"""Common definition of this dataset type for the graph
|
|
64
|
+
(`~lsst.daf.butler.DatasetType`).
|
|
64
65
|
"""
|
|
65
66
|
|
|
66
67
|
is_initial_query_constraint: bool
|
|
67
68
|
"""Whether this dataset should be included as a constraint in the initial
|
|
68
|
-
query for data IDs in QuantumGraph generation.
|
|
69
|
+
query for data IDs in QuantumGraph generation (`bool`).
|
|
69
70
|
|
|
70
71
|
This is only `True` for dataset types that are overall regular inputs, and
|
|
71
72
|
only if none of those input connections had ``deferQueryConstraint=True``.
|
|
@@ -73,14 +74,16 @@ class DatasetTypeNode:
|
|
|
73
74
|
|
|
74
75
|
is_prerequisite: bool
|
|
75
76
|
"""Whether this dataset type is a prerequisite input that must exist in
|
|
76
|
-
the Registry before graph creation.
|
|
77
|
+
the Registry before graph creation (`bool`).
|
|
77
78
|
"""
|
|
78
79
|
|
|
79
80
|
producing_edge: WriteEdge | None
|
|
80
|
-
"""The edge to the task that produces this dataset type
|
|
81
|
+
"""The edge to the task that produces this dataset type
|
|
82
|
+
(`lsst.pipe.base.pipeline_graph.WriteEdge` or `None`)."""
|
|
81
83
|
|
|
82
84
|
consuming_edges: Collection[ReadEdge]
|
|
83
|
-
"""The edges to tasks that consume this dataset type
|
|
85
|
+
"""The edges to tasks that consume this dataset type
|
|
86
|
+
(collection [`lsst.pipe.base.pipeline_graph.ReadEdge`])."""
|
|
84
87
|
|
|
85
88
|
@classmethod
|
|
86
89
|
def _from_edges(
|
|
@@ -184,7 +187,7 @@ class DatasetTypeNode:
|
|
|
184
187
|
|
|
185
188
|
@property
|
|
186
189
|
def name(self) -> str:
|
|
187
|
-
"""Name of the dataset type.
|
|
190
|
+
"""Name of the dataset type (`str`).
|
|
188
191
|
|
|
189
192
|
This is always the parent dataset type, never that of a component.
|
|
190
193
|
"""
|
|
@@ -193,29 +196,33 @@ class DatasetTypeNode:
|
|
|
193
196
|
@property
|
|
194
197
|
def key(self) -> NodeKey:
|
|
195
198
|
"""Key that identifies this dataset type in internal and exported
|
|
196
|
-
networkx graphs.
|
|
199
|
+
networkx graphs (`~lsst.pipe.base.pipeline_graph.NodeKey`).
|
|
197
200
|
"""
|
|
198
201
|
return NodeKey(NodeType.DATASET_TYPE, self.dataset_type.name)
|
|
199
202
|
|
|
200
203
|
@property
|
|
201
204
|
def dimensions(self) -> DimensionGroup:
|
|
202
|
-
"""Dimensions of the dataset type
|
|
205
|
+
"""Dimensions of the dataset type
|
|
206
|
+
(`~lsst.daf.butler.DimensionGroup`).
|
|
207
|
+
"""
|
|
203
208
|
return self.dataset_type.dimensions
|
|
204
209
|
|
|
205
210
|
@property
|
|
206
211
|
def storage_class_name(self) -> str:
|
|
207
|
-
"""String name of the storage class for this dataset type."""
|
|
212
|
+
"""String name of the storage class for this dataset type (`str`)."""
|
|
208
213
|
return self.dataset_type.storageClass_name
|
|
209
214
|
|
|
210
215
|
@property
|
|
211
216
|
def storage_class(self) -> StorageClass:
|
|
212
|
-
"""Storage class for this dataset type
|
|
217
|
+
"""Storage class for this dataset type
|
|
218
|
+
(`~lsst.daf.butler.StorageClass`).
|
|
219
|
+
"""
|
|
213
220
|
return self.dataset_type.storageClass
|
|
214
221
|
|
|
215
222
|
@property
|
|
216
223
|
def is_calibration(self) -> bool:
|
|
217
224
|
"""Whether this dataset type can be included in
|
|
218
|
-
`~lsst.daf.butler.CollectionType.CALIBRATION` collections.
|
|
225
|
+
`~lsst.daf.butler.CollectionType.CALIBRATION` collections (`bool`).
|
|
219
226
|
"""
|
|
220
227
|
return self.dataset_type.isCalibration()
|
|
221
228
|
|
|
@@ -90,16 +90,16 @@ class Edge(ABC):
|
|
|
90
90
|
"""
|
|
91
91
|
|
|
92
92
|
task_key: NodeKey
|
|
93
|
-
"""Task part of the key for this edge in networkx graphs."""
|
|
93
|
+
"""Task part of the key for this edge in networkx graphs (`NodeKey`)."""
|
|
94
94
|
|
|
95
95
|
dataset_type_key: NodeKey
|
|
96
|
-
"""Task part of the key for this edge in networkx graphs."""
|
|
96
|
+
"""Task part of the key for this edge in networkx graphs (`NodeKey`)."""
|
|
97
97
|
|
|
98
98
|
connection_name: str
|
|
99
|
-
"""Name used by the task to refer to this dataset type."""
|
|
99
|
+
"""Name used by the task to refer to this dataset type (`str`)."""
|
|
100
100
|
|
|
101
101
|
storage_class_name: str
|
|
102
|
-
"""Storage class expected by this task.
|
|
102
|
+
"""Storage class expected by this task (`str`).
|
|
103
103
|
|
|
104
104
|
If `ReadEdge.component` is not `None`, this is the component storage class,
|
|
105
105
|
not the parent storage class.
|
|
@@ -111,7 +111,7 @@ class Edge(ABC):
|
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
raw_dimensions: frozenset[str]
|
|
114
|
-
"""Raw dimensions in the task declaration.
|
|
114
|
+
"""Raw dimensions in the task declaration (`frozenset` [`str`]).
|
|
115
115
|
|
|
116
116
|
This can only be used safely for partial comparisons: two edges with the
|
|
117
117
|
same ``raw_dimensions`` (and the same parent dataset type name) always have
|
|
@@ -128,12 +128,12 @@ class Edge(ABC):
|
|
|
128
128
|
|
|
129
129
|
@property
|
|
130
130
|
def task_label(self) -> str:
|
|
131
|
-
"""Label of the task."""
|
|
131
|
+
"""Label of the task (`str`)."""
|
|
132
132
|
return str(self.task_key)
|
|
133
133
|
|
|
134
134
|
@property
|
|
135
135
|
def parent_dataset_type_name(self) -> str:
|
|
136
|
-
"""Name of the parent dataset type.
|
|
136
|
+
"""Name of the parent dataset type (`str`).
|
|
137
137
|
|
|
138
138
|
All dataset type nodes in a pipeline graph are for parent dataset
|
|
139
139
|
types; components are represented by additional `ReadEdge` state.
|
|
@@ -154,7 +154,9 @@ class Edge(ABC):
|
|
|
154
154
|
@property
|
|
155
155
|
def key(self) -> tuple[NodeKey, NodeKey, str]:
|
|
156
156
|
"""Ordered tuple of node keys and connection name that uniquely
|
|
157
|
-
identifies this edge in a pipeline graph.
|
|
157
|
+
identifies this edge in a pipeline graph (`NodeKey`, `NodeKey`, `str`).
|
|
158
|
+
|
|
159
|
+
The nodes are ordered in the same sense as for `nodes`.
|
|
158
160
|
"""
|
|
159
161
|
return self.nodes + (self.connection_name,)
|
|
160
162
|
|
|
@@ -163,7 +165,7 @@ class Edge(ABC):
|
|
|
163
165
|
|
|
164
166
|
@property
|
|
165
167
|
def dataset_type_name(self) -> str:
|
|
166
|
-
"""Dataset type name seen by the task.
|
|
168
|
+
"""Dataset type name seen by the task (`str`).
|
|
167
169
|
|
|
168
170
|
This defaults to the parent dataset type name, which is appropriate
|
|
169
171
|
for all writes and most reads.
|
|
@@ -355,7 +357,7 @@ class ReadEdge(Edge):
|
|
|
355
357
|
|
|
356
358
|
component: str | None
|
|
357
359
|
"""Component to add to `parent_dataset_type_name` to form the dataset type
|
|
358
|
-
name seen by this task.
|
|
360
|
+
name seen by this task (`str` or `None`).
|
|
359
361
|
"""
|
|
360
362
|
|
|
361
363
|
is_prerequisite: bool
|
|
@@ -378,7 +380,7 @@ class ReadEdge(Edge):
|
|
|
378
380
|
|
|
379
381
|
@property
|
|
380
382
|
def dataset_type_name(self) -> str:
|
|
381
|
-
"""Complete dataset type name, as seen by the task."""
|
|
383
|
+
"""Complete dataset type name, as seen by the task (`str`)."""
|
|
382
384
|
if self.component is not None:
|
|
383
385
|
return f"{self.parent_dataset_type_name}.{self.component}"
|
|
384
386
|
return self.parent_dataset_type_name
|
|
@@ -1546,7 +1546,7 @@ class PipelineGraph:
|
|
|
1546
1546
|
|
|
1547
1547
|
- the parent dataset type name;
|
|
1548
1548
|
- the resolved `DatasetTypeNode`, or `None` if the dataset type has
|
|
1549
|
-
|
|
1549
|
+
not been resolved.
|
|
1550
1550
|
"""
|
|
1551
1551
|
for generation in networkx.algorithms.dag.topological_generations(self._xgraph):
|
|
1552
1552
|
key: NodeKey
|
|
@@ -227,7 +227,7 @@ class MockDataset(pydantic.BaseModel):
|
|
|
227
227
|
return super().model_copy(*args, **kwargs)
|
|
228
228
|
|
|
229
229
|
@classmethod
|
|
230
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any:
|
|
230
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[override]
|
|
231
231
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
232
232
|
return super().model_construct(*args, **kwargs)
|
|
233
233
|
|
|
@@ -266,7 +266,7 @@ class ConvertedUnmockedDataset(pydantic.BaseModel):
|
|
|
266
266
|
return super().model_copy(*args, **kwargs)
|
|
267
267
|
|
|
268
268
|
@classmethod
|
|
269
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc]
|
|
269
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc, override]
|
|
270
270
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
271
271
|
return super().model_construct(*args, **kwargs)
|
|
272
272
|
|
|
@@ -316,7 +316,7 @@ class MockDatasetQuantum(pydantic.BaseModel):
|
|
|
316
316
|
return super().model_copy(*args, **kwargs)
|
|
317
317
|
|
|
318
318
|
@classmethod
|
|
319
|
-
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc]
|
|
319
|
+
def model_construct(cls, *args: Any, **kwargs: Any) -> Any: # type: ignore[misc, override]
|
|
320
320
|
"""See `pydantic.BaseModel.model_construct`."""
|
|
321
321
|
return super().model_construct(*args, **kwargs)
|
|
322
322
|
|
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "29.2025.
|
|
2
|
+
__version__ = "29.2025.2300"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.2300
|
|
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
|
|
@@ -7,7 +7,7 @@ lsst/pipe/base/_instrument.py,sha256=I9UTaj81krR1zkTZ1owfOPBzHN29PY3Egg7fIE5obxQ
|
|
|
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
|
-
lsst/pipe/base/_task_metadata.py,sha256=
|
|
10
|
+
lsst/pipe/base/_task_metadata.py,sha256=wKZJWWLBByaUMx0253Dre2P241mSM1U0CCywcZmoF4k,24978
|
|
11
11
|
lsst/pipe/base/all_dimensions_quantum_graph_builder.py,sha256=YCgDh-P1HxgS2zH2fP57uYCCZGI9DxBLIcXihnc-czQ,45758
|
|
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
|
|
@@ -32,7 +32,7 @@ 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=GnyaHNlpLZJmdCekPuL3VEJCw758_rgDNpEpGPT5mRw,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
|
|
@@ -47,16 +47,16 @@ lsst/pipe/base/graph/_implDetails.py,sha256=QQHVnCW78UnIbALXX_v7EW7g6MTUTuuR1Q_S
|
|
|
47
47
|
lsst/pipe/base/graph/_loadHelpers.py,sha256=qUfjIgFezaXZRCFV7PFzmz1SSKFjRWOMWJePuyKiD24,12064
|
|
48
48
|
lsst/pipe/base/graph/_versionDeserializers.py,sha256=pXk63v6jkQSghSOoU1hpPkxVa82WVGitm2jrop85SeM,27992
|
|
49
49
|
lsst/pipe/base/graph/graph.py,sha256=CIM7ij7I51rVtVj0jd5dPgOWByALoFZh2Cp61mOEnyQ,74200
|
|
50
|
-
lsst/pipe/base/graph/graphSummary.py,sha256=
|
|
50
|
+
lsst/pipe/base/graph/graphSummary.py,sha256=XI_TaoWE_UY08tfMdlDbSsfZYRQNwXDPGsiwZ6wf-ag,4924
|
|
51
51
|
lsst/pipe/base/graph/quantumNode.py,sha256=l4mslxBgyUzBAqwjpx6XRP-UPxe-oRMxHJWt-_y3Dm0,7196
|
|
52
52
|
lsst/pipe/base/pipeline_graph/__init__.py,sha256=yTEuvlzbeKIHIm7GeRmGSsma1wpZFNv8j12WfSH-deY,1516
|
|
53
53
|
lsst/pipe/base/pipeline_graph/__main__.py,sha256=E6ugEwJbds22wjgcfcgzeyO04JofQwVhn_Y8kZYY1lQ,20769
|
|
54
|
-
lsst/pipe/base/pipeline_graph/_dataset_types.py,sha256=
|
|
55
|
-
lsst/pipe/base/pipeline_graph/_edges.py,sha256=
|
|
54
|
+
lsst/pipe/base/pipeline_graph/_dataset_types.py,sha256=MzpiI4bOUgwUpnse4Bj_KFAUFm_uERCHWd0BwAhKksc,11333
|
|
55
|
+
lsst/pipe/base/pipeline_graph/_edges.py,sha256=VQSG74Er5CiyIDyodfxixVaSXfh-tSEPkk1u8VeMqe0,34656
|
|
56
56
|
lsst/pipe/base/pipeline_graph/_exceptions.py,sha256=3jvCXms0_5ThLGtsOlKxsI1vWiq3gY4hba8fRBW0tgI,3943
|
|
57
57
|
lsst/pipe/base/pipeline_graph/_mapping_views.py,sha256=9nLKPA8j7sS09haShbJnEtGXbb4vy_cWpbLeMLBmVvs,9194
|
|
58
58
|
lsst/pipe/base/pipeline_graph/_nodes.py,sha256=WcP31yIRCNvFh9lhEtKJ_8bsgX2u_B_qwyV7DaHJ8JI,3376
|
|
59
|
-
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=
|
|
59
|
+
lsst/pipe/base/pipeline_graph/_pipeline_graph.py,sha256=5kVQ28fH08wNoyys5VxoyJqtPBRTqNdjO6lvGbmDVOo,120358
|
|
60
60
|
lsst/pipe/base/pipeline_graph/_task_subsets.py,sha256=lLvcndSGcZigteWd4eeAM8LxQ1lHPBoysY8PjJTxx1c,13244
|
|
61
61
|
lsst/pipe/base/pipeline_graph/_tasks.py,sha256=7rGxhc-qj-Ja56MZ5xD_WV01Kt7d1EPYwEz2_qggC5w,39914
|
|
62
62
|
lsst/pipe/base/pipeline_graph/expressions.py,sha256=MZ0qxGA4ctu_WqVjdjjezZF8Jd5174PWbio7EF2wdl0,7717
|
|
@@ -85,14 +85,14 @@ lsst/pipe/base/tests/util.py,sha256=eWuIRz55HYgNmMkexinN9HjUFmPC3uapO8jMjcQY-ao,
|
|
|
85
85
|
lsst/pipe/base/tests/mocks/__init__.py,sha256=NrIJYDeYgR3HsOJXBEXi8EXDhhV7iw7dgwK9qlQ59PA,1551
|
|
86
86
|
lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=WU0-5cPsU4565UhlsvQwhZKP5RzPJPyZ8sGio1CKAPI,6813
|
|
87
87
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=fqaJ-tB7K3jxlfCvCSnVd_GNrz-JhX7FB914h7nHLXc,29366
|
|
88
|
-
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=
|
|
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.
|
|
88
|
+
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=gC0czHURMk7PWj8N6dLxnY5V4HWX5i8ukb5SZbgWKy8,25257
|
|
89
|
+
lsst_pipe_base-29.2025.2300.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
90
|
+
lsst_pipe_base-29.2025.2300.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
91
|
+
lsst_pipe_base-29.2025.2300.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
92
|
+
lsst_pipe_base-29.2025.2300.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
93
|
+
lsst_pipe_base-29.2025.2300.dist-info/METADATA,sha256=qN3C-TyotJss0dGGTai0UtAR3E-x-T3BKgV7BOAihZI,2195
|
|
94
|
+
lsst_pipe_base-29.2025.2300.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
95
|
+
lsst_pipe_base-29.2025.2300.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
96
|
+
lsst_pipe_base-29.2025.2300.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
97
|
+
lsst_pipe_base-29.2025.2300.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
98
|
+
lsst_pipe_base-29.2025.2300.dist-info/RECORD,,
|
{lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-29.2025.2100.dist-info → lsst_pipe_base-29.2025.2300.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|