Skip to content

Commit a476d89

Browse files
chore(deps): update all dependencies
1 parent 8654f46 commit a476d89

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616

1717
# ruff - linting + formatting
1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: "v0.7.1"
19+
rev: "v0.8.5"
2020
hooks:
2121
- id: ruff
2222
name: ruff
@@ -25,7 +25,7 @@ repos:
2525

2626
# mypy - lint-like type checking
2727
- repo: https://github.com/pre-commit/mirrors-mypy
28-
rev: v1.13.0
28+
rev: v1.14.1
2929
hooks:
3030
- id: mypy
3131
name: mypy
@@ -52,7 +52,7 @@ repos:
5252

5353
# bandit - find common security issues
5454
- repo: https://github.com/pycqa/bandit
55-
rev: 1.7.10
55+
rev: 1.8.0
5656
hooks:
5757
- id: bandit
5858
name: bandit

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.0
1+
3.13.1

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.0-slim-bookworm AS python-base
1+
FROM python:3.13.1-slim-bookworm AS python-base
22

33
ENV PYTHONUNBUFFERED=1 \
44
PYTHONDONTWRITEBYTECODE=1 \
@@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
99

1010
FROM python-base AS builder-base
1111

12-
COPY --from=ghcr.io/astral-sh/uv:0.4.27 /uv /bin/uv
12+
COPY --from=ghcr.io/astral-sh/uv:0.5.13 /uv /bin/uv
1313

1414
WORKDIR $WORKDIR_PATH
1515

0 commit comments

Comments
 (0)