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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
# renovate: datasource=python-version depName=python
PYTHON_VERSION: 3.14.2
# renovate: datasource=pypi depName=uv
UV_VERSION: 0.9.24
UV_VERSION: 0.9.26

jobs:
run-django-tests:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ repos:
- id: pyproject-fmt

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.24
rev: 0.9.26
hooks:
- id: uv-lock

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.11
rev: v0.14.13
hooks:
- id: ruff-check
args: ["--fix"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ENV UV_PYTHON_PREFERENCE=only-system
# uv version can not be defined in an environment variable,
# because COPY --from doesn't support variable expansion
# https://github.com/moby/moby/issues/34482
COPY --from=ghcr.io/astral-sh/uv:0.9.24@sha256:816fdce3387ed2142e37d2e56e1b1b97ccc1ea87731ba199dc8a25c04e4997c5 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.9.26@sha256:9a23023be68b2ed09750ae636228e903a54a05ea56ed03a934d00fe9fbeded4b /uv /uvx /bin/

# https://github.com/astral-sh/uv-docker-example/blob/a14ebc89e3a5e5b33131284968d8969ae054ed0d/Dockerfile#L13
RUN --mount=type=cache,target=/root/.cache/uv \
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ dev = [
"ipdb==0.13.13",
"ipython==9.9.0",
"parameterized==0.9",
"prek==0.2.27",
"prek==0.2.29",
"pydot==4.0.1", # For visualizing Django models with "graph_models --pydot"
"ruff==0.14.11", # Used by Django's find_formatters and run_formatters (with a monkey patch)
"ruff==0.14.13", # Used by Django's find_formatters and run_formatters (with a monkey patch)
"tblib==3.2.2", # Enables proper tracebacks when Django tests fail with --parallel
"wat-inspector==0.4.3",
"xkcdpass==1.30.0",
Expand Down
Loading