lsst-pipe-base 29.2025.1000__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.
Files changed (20) hide show
  1. lsst/pipe/base/_datasetQueryConstraints.py +1 -1
  2. lsst/pipe/base/all_dimensions_quantum_graph_builder.py +642 -357
  3. lsst/pipe/base/connections.py +179 -2
  4. lsst/pipe/base/pipeline_graph/visualization/_mermaid.py +157 -24
  5. lsst/pipe/base/prerequisite_helpers.py +1 -1
  6. lsst/pipe/base/quantum_graph_builder.py +91 -60
  7. lsst/pipe/base/quantum_graph_skeleton.py +20 -0
  8. lsst/pipe/base/quantum_provenance_graph.py +790 -421
  9. lsst/pipe/base/tests/mocks/_data_id_match.py +4 -0
  10. lsst/pipe/base/version.py +1 -1
  11. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/METADATA +5 -2
  12. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/RECORD +20 -20
  13. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/WHEEL +1 -1
  14. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/entry_points.txt +0 -0
  15. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/COPYRIGHT +0 -0
  16. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/LICENSE +0 -0
  17. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/bsd_license.txt +0 -0
  18. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info/licenses}/gpl-v3.0.txt +0 -0
  19. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/top_level.txt +0 -0
  20. {lsst_pipe_base-29.2025.1000.dist-info → lsst_pipe_base-29.2025.1200.dist-info}/zip-safe +0 -0
@@ -117,7 +117,7 @@ if sys.version_info.minor < 12:
117
117
  else:
118
118
 
119
119
  class MetaMeta(type(Protocol)):
120
- def __init__(cls, *args, **kwargs):
120
+ def __init__(cls, *args, **kwargs): # noqa: N805
121
121
  # Note: this prepends an *extra* cls to type's argument list
122
122
  return super().__init__(cls, *args, **kwargs)
123
123