Skip to content

Commit

Permalink
Merge pull request #28 from lsst/tickets/DM-40150
Browse files Browse the repository at this point in the history
DM-40150: Use new QuantumContext class name
  • Loading branch information
timj authored Jan 5, 2024
2 parents 9e7d708 + 606e61b commit 061c520
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.pyver }}
channels: conda-forge
channels: conda-forge,default
channel-priority: strict
show-channel-urls: true
miniforge-variant: Mambaforge
use-mamba: true

- name: Install DM stack and mypy with conda/mamba
shell: bash -l {0}
run: |
conda config --set always_yes yes
conda install -q mamba
mamba install -q stackvana=0
mamba install -q mypy
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.sconsign.dblite
config.log
.sconf_temp
.coverage*
_build.*
*.o
*.os
*.so
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.9.1
rev: 23.12.1
hooks:
- id: black
language_version: python3.10
language_version: python3.11
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.0.288
rev: v0.1.11
hooks:
- id: ruff
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/cell_coadds/_cell_coadd_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def __init__(self, **kwargs: Any):

def runQuantum( # type: ignore[override]
self,
butlerQC: pipeBase.ButlerQuantumContext,
butlerQC: pipeBase.QuantumContext,
inputRefs: pipeBase.InputQuantizedConnection,
outputRefs: pipeBase.OutputQuantizedConnection,
) -> MultipleCellCoadd:
Expand Down

0 comments on commit 061c520

Please sign in to comment.