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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
merge_group: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
schedule:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.1
rev: v0.14.10
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.8.19
rev: 0.9.21
hooks:
- id: uv-lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
4 changes: 2 additions & 2 deletions project_templates/fastapi_safir_app/example-uws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - Runs a non-root user.
# - Sets up the entrypoint and port.

FROM python:3.13.7-slim-trixie AS base-image
FROM python:3.14.2-slim-trixie AS base-image

# Update system packages.
COPY scripts/install-base-packages.sh .
Expand All @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
FROM base-image AS install-image

# Install uv.
COPY --from=ghcr.io/astral-sh/uv:0.8.19 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.21 /uv /bin/uv

# Install system packages only needed for building dependencies.
COPY scripts/install-dependency-packages.sh .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Natural Language :: English",
"Operating System :: POSIX",
"Private :: Do Not Upload",
"Typing :: Typed",
]
requires-python = ">=3.13"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.100",
"pydantic>2",
Expand All @@ -32,7 +32,7 @@ Homepage = "https://example-uws.lsst.io"
Source = "https://github.com/lsst-sqre/example-uws"

[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[dependency-groups]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
merge_group: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
schedule:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.1
rev: v0.14.10
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.8.19
rev: 0.9.21
hooks:
- id: uv-lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
4 changes: 2 additions & 2 deletions project_templates/fastapi_safir_app/example/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - Runs a non-root user.
# - Sets up the entrypoint and port.

FROM python:3.13.7-slim-trixie AS base-image
FROM python:3.14.2-slim-trixie AS base-image

# Update system packages.
COPY scripts/install-base-packages.sh .
Expand All @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
FROM base-image AS install-image

# Install uv.
COPY --from=ghcr.io/astral-sh/uv:0.8.19 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.21 /uv /bin/uv

# Install system packages only needed for building dependencies.
COPY scripts/install-dependency-packages.sh .
Expand Down
6 changes: 3 additions & 3 deletions project_templates/fastapi_safir_app/example/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Natural Language :: English",
"Operating System :: POSIX",
"Private :: Do Not Upload",
"Typing :: Typed",
]
requires-python = ">=3.13"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.100",
"pydantic>2",
Expand All @@ -32,7 +32,7 @@ Homepage = "https://example.lsst.io"
Source = "https://github.com/lsst-sqre/example"

[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[dependency-groups]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
merge_group: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# Current supported uv version. The uv documentation recommends pinning
# this. The version should match the version used in .pre-commit-config.yaml
# and frozen in uv.lock. It is updated by make update-deps.
UV_VERSION: "0.8.19"
UV_VERSION: "0.9.21"

"on":
schedule:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.1
rev: v0.14.10
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.8.19
rev: 0.9.21
hooks:
- id: uv-lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - Runs a non-root user.
# - Sets up the entrypoint and port.

FROM python:3.13.7-slim-trixie AS base-image
FROM python:3.14.2-slim-trixie AS base-image

# Update system packages.
COPY scripts/install-base-packages.sh .
Expand All @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
FROM base-image AS install-image

# Install uv.
COPY --from=ghcr.io/astral-sh/uv:0.8.19 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.21 /uv /bin/uv

# Install system packages only needed for building dependencies.
COPY scripts/install-dependency-packages.sh .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Natural Language :: English",
"Operating System :: POSIX",
"Private :: Do Not Upload",
"Typing :: Typed",
]
requires-python = ">=3.13"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.100",
"pydantic>2",
Expand All @@ -36,7 +36,7 @@ Homepage = "https://{{cookiecutter.name | lower}}.lsst.io"
Source = "https://github.com/{{cookiecutter.github_org}}/{{cookiecutter.name}}"

[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion project_templates/technote_md/testn-000/technote.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = 2026-01-05T22:18:41Z
date_created = 2026-01-05T22:26:49Z
organization.name = "NSF-DOE Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"
license.id = "CC-BY-4.0"
Expand Down
2 changes: 1 addition & 1 deletion project_templates/technote_rst/testn-000/technote.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = 2026-01-05T22:18:41Z
date_created = 2026-01-05T22:26:50Z
organization.name = "NSF-DOE Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"
license.id = "CC-BY-4.0"
Expand Down