lsst-pipe-base 29.2025.4700__py3-none-any.whl → 29.2025.4800__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/connections.py +11 -0
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/METADATA +1 -1
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/RECORD +12 -12
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/WHEEL +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/LICENSE +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/zip-safe +0 -0
lsst/pipe/base/connections.py
CHANGED
|
@@ -506,8 +506,19 @@ class DeferredDatasetRef:
|
|
|
506
506
|
datasetRef: DatasetRef
|
|
507
507
|
|
|
508
508
|
def __getattr__(self, name: str) -> Any:
|
|
509
|
+
# make sure reduce is called on DeferredDatasetRef and not on
|
|
510
|
+
# the DatasetRef
|
|
511
|
+
if name in ("__reduce__", "datasetRef", "__deepcopy__"):
|
|
512
|
+
object.__getattribute__(self, name)
|
|
509
513
|
return getattr(self.datasetRef, name)
|
|
510
514
|
|
|
515
|
+
def __deepcopy__(self, memo: dict) -> DeferredDatasetRef:
|
|
516
|
+
# dataset refs should be immutable deferred version should be too
|
|
517
|
+
return self
|
|
518
|
+
|
|
519
|
+
def __reduce__(self) -> tuple:
|
|
520
|
+
return (self.__class__, (self.datasetRef,))
|
|
521
|
+
|
|
511
522
|
|
|
512
523
|
class PipelineTaskConnections(metaclass=PipelineTaskConnectionsMetaclass):
|
|
513
524
|
"""PipelineTaskConnections is a class used to declare desired IO when a
|
lsst/pipe/base/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "29.2025.
|
|
2
|
+
__version__ = "29.2025.4800"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-pipe-base
|
|
3
|
-
Version: 29.2025.
|
|
3
|
+
Version: 29.2025.4800
|
|
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-Expression: BSD-3-Clause OR GPL-3.0-or-later
|
|
@@ -14,7 +14,7 @@ lsst/pipe/base/caching_limited_butler.py,sha256=x_e4EXYODcVJV8BkLzvUTu2yCd6dqM1r
|
|
|
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
|
-
lsst/pipe/base/connections.py,sha256=
|
|
17
|
+
lsst/pipe/base/connections.py,sha256=UIe1km5_bOth5o9LZtjpT2r9vc44K4TGmz5Fvmqu5rA,67178
|
|
18
18
|
lsst/pipe/base/dot_tools.py,sha256=vriWMaB8YTEKKvhJE5KYdVGE4gB5XmiYfD2f18Fue-c,4285
|
|
19
19
|
lsst/pipe/base/exec_fixup_data_id.py,sha256=9OjOcH-6AHZ1JnD_CemieI0wWX90J_VdaY9v1oXwMdQ,4187
|
|
20
20
|
lsst/pipe/base/execution_graph_fixup.py,sha256=ND0x4hlpeEW-gudo-i2K7HT7MoM5sp_mcoqRMCopSqQ,3815
|
|
@@ -42,7 +42,7 @@ lsst/pipe/base/task.py,sha256=XHBd-7m1a4-6LgobBYA1DgY4H7EV-_RWKfxbhZbMmD4,15145
|
|
|
42
42
|
lsst/pipe/base/taskFactory.py,sha256=MsDGECJqZLSZk8SGhpuVhNaP32UWuNvxZiDcZExPFG8,3412
|
|
43
43
|
lsst/pipe/base/testUtils.py,sha256=lSBKMhoKflbi8JkMNYfEqqHNl-rtFI8UYT3QneDYpLo,18477
|
|
44
44
|
lsst/pipe/base/utils.py,sha256=JmEt3l0xrh9uayKrSXuQEq12aXOhDr2YXmbYduaxCko,1940
|
|
45
|
-
lsst/pipe/base/version.py,sha256=
|
|
45
|
+
lsst/pipe/base/version.py,sha256=MHZJr_Yoevn1SeqerO6dmfTP3xtJLGxPmEi-9Jpl380,55
|
|
46
46
|
lsst/pipe/base/cli/__init__.py,sha256=861tXIAW7SqtqNUYkjbeEdfg8lDswXsjJQca0gVCFz4,54
|
|
47
47
|
lsst/pipe/base/cli/_get_cli_subcommands.py,sha256=g_af64klRybBGKAg7fmBSZBdw2LYBAsFON_yQIMZON0,1289
|
|
48
48
|
lsst/pipe/base/cli/cmd/__init__.py,sha256=3UF2IQEEBor4YMGRNPdcZAVCAI5yFyeHp5nGul4IoyM,1557
|
|
@@ -113,13 +113,13 @@ lsst/pipe/base/tests/mocks/_data_id_match.py,sha256=jVekStcrItC0tqOCc01VjYaiE9ex
|
|
|
113
113
|
lsst/pipe/base/tests/mocks/_pipeline_task.py,sha256=N3fC4OMAMWWnYtyLkVdMfb9ZiFse39HniRDvlAOofOY,30691
|
|
114
114
|
lsst/pipe/base/tests/mocks/_repo.py,sha256=OTJw_fi37w7bkZbbLa7z51W-45zxySAnLbV7Qv_aSB4,27423
|
|
115
115
|
lsst/pipe/base/tests/mocks/_storage_class.py,sha256=12IFfJMbZ5GkYlMX6ZMWiG8pMZc2Jlxke3qQW-bljdU,27434
|
|
116
|
-
lsst_pipe_base-29.2025.
|
|
117
|
-
lsst_pipe_base-29.2025.
|
|
118
|
-
lsst_pipe_base-29.2025.
|
|
119
|
-
lsst_pipe_base-29.2025.
|
|
120
|
-
lsst_pipe_base-29.2025.
|
|
121
|
-
lsst_pipe_base-29.2025.
|
|
122
|
-
lsst_pipe_base-29.2025.
|
|
123
|
-
lsst_pipe_base-29.2025.
|
|
124
|
-
lsst_pipe_base-29.2025.
|
|
125
|
-
lsst_pipe_base-29.2025.
|
|
116
|
+
lsst_pipe_base-29.2025.4800.dist-info/licenses/COPYRIGHT,sha256=kB3Z9_f6a6uFLGpEmNJT_n186CE65H6wHu4F6BNt_zA,368
|
|
117
|
+
lsst_pipe_base-29.2025.4800.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
118
|
+
lsst_pipe_base-29.2025.4800.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
119
|
+
lsst_pipe_base-29.2025.4800.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
120
|
+
lsst_pipe_base-29.2025.4800.dist-info/METADATA,sha256=54BUUcJ9VnlUujS88EhcV3m0nXzkrEyxpCyjlMm60lA,2257
|
|
121
|
+
lsst_pipe_base-29.2025.4800.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
122
|
+
lsst_pipe_base-29.2025.4800.dist-info/entry_points.txt,sha256=bnmUhJBsChxMdqST9VmFBYYKxLQoToOfqW1wjW7khjk,64
|
|
123
|
+
lsst_pipe_base-29.2025.4800.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
124
|
+
lsst_pipe_base-29.2025.4800.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
125
|
+
lsst_pipe_base-29.2025.4800.dist-info/RECORD,,
|
|
File without changes
|
{lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_pipe_base-29.2025.4700.dist-info → lsst_pipe_base-29.2025.4800.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|