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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ repos:
- id: check-toml
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.13.3
rev: v0.14.5
hooks:
- id: ruff-check
args: [--fix]
- id: ruff-format
- repo: https://github.com/numpy/numpydoc
rev: "v1.9.0"
rev: "v1.10.0"
hooks:
- id: numpydoc-validation
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-55320.feature.md

This file was deleted.

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

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

- Added ``--retained-dataset-types`` option to ``pipetask qgraph`` and ``pipetask run``. (`DM-54879 <https://rubinobs.atlassian.net/browse/DM-54879>`_)
- Added ``--prune-unanchored-quanta`` option to ``pipetask qgraph`` (`DM-55320 <https://rubinobs.atlassian.net/browse/DM-55320>`_)


lsst-ctrl-mpexec v30.0.1 (2026-02-03)
=====================================

Expand Down
1 change: 0 additions & 1 deletion python/lsst/ctrl/mpexec/mpGraphExecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class MPGraphExecutor(lsst.pipe.base.mp_graph_executor.MPGraphExecutor):
This is a deprecated backwards-compatibility shim for
`lsst.pipe.base.mp_graph_executor.MPGraphExecutor`, which has
the same functionality with very minor interface changes.

"""

def __init__(
Expand Down
1 change: 0 additions & 1 deletion python/lsst/ctrl/mpexec/singleQuantumExecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ class SingleQuantumExecutor(lsst.pipe.base.single_quantum_executor.SingleQuantum
This is a deprecated backwards-compatibility shim for
`lsst.pipe.base.single_quantum_executor.SingleQuantumExecutor`, which has
the same functionality with very minor interface changes.

"""

def __init__(
Expand Down
Loading