Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run pre-commit

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"

- name: Run prek
uses: j178/prek-action@v2
with:
extra_args: --all-files
1 change: 0 additions & 1 deletion doc/changes/DM-54879.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-55232.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-55320.feature.md

This file was deleted.

16 changes: 16 additions & 0 deletions doc/lsst.pipe.base/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
lsst-pipe-base v30.0.9 (2026-07-14)
===================================

New Features
------------

- Added ``retained_dataset_types`` parameter to ``QuantumGraphBuilder`` and ``SeparablePipelineExecutor``. (`DM-54879 <https://rubinobs.atlassian.net/browse/DM-54879>`_)
- Added ``prune_unanchored_quanta`` parameter to ``QuantumGraphBuilder`` (`DM-55320 <https://rubinobs.atlassian.net/browse/DM-55320>`_)


Bug Fixes
---------

- Fixed zstd failure in ``butler aggregate-graph`` when logs are really huge. (`DM-55232 <https://rubinobs.atlassian.net/browse/DM-55232>`_)


lsst-pipe-base v30.0.8 (2026-06-09)
===================================

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ checks = [
"RT02", # Does not want named return value. DM style says we do.
"SS05", # pydocstyle is better at finding infinitive verb.
"RT03", # sphinx bug requiring empty Returns.
"PR04", # We use type annotations.
]
exclude = [
'^__init__$',
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/pipe/base/quantum_graph/_provenance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,7 @@ def make_blocked(cls, quantum_id: uuid.UUID) -> ProvenanceQuantumScanData:
Parameters
----------
quantum_id : `uuid.UUID`
Unique ID of the quantum
Unique ID of the quantum.

Returns
-------
Expand Down
Loading