Skip to content

Commit 778d102

Browse files
authored
Merge pull request #286 from lsst-sqre/t/DM-54436
DM-54436: Prepare 5.0.1 release
2 parents 80e57a6 + 0a0a019 commit 778d102

7 files changed

Lines changed: 424 additions & 396 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
# Current supported uv version. The uv documentation recommends pinning
55
# this. The version should match the version used in .pre-commit-config.yaml
66
# and frozen in uv.lock. It is updated by make update-deps.
7-
UV_VERSION: "0.10.4"
7+
UV_VERSION: "0.10.11"
88

99
"on":
1010
merge_group: {}

.github/workflows/periodic-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
# Current supported uv version. The uv documentation recommends pinning
1010
# this. The version should match the version used in .pre-commit-config.yaml
1111
# and frozen in uv.lock. It is updated by make update-deps.
12-
UV_VERSION: "0.10.4"
12+
UV_VERSION: "0.10.11"
1313

1414
"on":
1515
schedule:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ repos:
88
- id: trailing-whitespace
99

1010
- repo: https://github.com/astral-sh/ruff-pre-commit
11-
rev: v0.15.2
11+
rev: v0.15.7
1212
hooks:
1313
- id: ruff-check
1414
args: [--fix, --exit-non-zero-on-fix]
1515
- id: ruff-format
1616

1717
- repo: https://github.com/astral-sh/uv-pre-commit
18-
rev: 0.10.4
18+
rev: 0.10.11
1919
hooks:
2020
- id: uv-lock

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ Find changes for the upcoming release in the project's [changelog.d directory](h
66

77
<!-- scriv-insert-here -->
88

9+
<a id='changelog-5.0.1'></a>
10+
## 5.0.1 (2026-03-19)
11+
12+
### Bug fixes
13+
14+
- Fix reporting of extended errors from the backend on cutout failure.
15+
916
<a id='changelog-5.0.0'></a>
1017
## 5.0.0 (2025-12-01)
1118

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
2323
FROM base-image AS install-image
2424

2525
# Install uv.
26-
COPY --from=ghcr.io/astral-sh/uv:0.10.4 /uv /bin/uv
26+
COPY --from=ghcr.io/astral-sh/uv:0.10.11 /uv /bin/uv
2727

2828
# Install system packages only needed for building dependencies.
2929
COPY scripts/install-dependency-packages.sh .
@@ -35,6 +35,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
3535
# cache on a separate file system.
3636
ENV UV_LINK_MODE=copy
3737

38+
# Force use of system Python so that the Python version is controlled by
39+
# the Docker base image version, not by whatever uv decides to install.
40+
ENV UV_PYTHON_PREFERENCE=only-system
41+
3842
# Install the dependencies.
3943
WORKDIR /app
4044
RUN --mount=type=cache,target=/root/.cache/uv \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ lint = [
6666
tox = [
6767
"tox>=4.24",
6868
"tox-docker>=5",
69-
"tox-uv>=1.25",
69+
"tox-uv-bare>=1.25",
7070
]
7171
typing = [
7272
"mypy>=1.15",

uv.lock

Lines changed: 407 additions & 390 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)