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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:

# ruff - linting + formatting
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.9
rev: v0.14.13
hooks:
- id: ruff
name: ruff
Expand All @@ -32,7 +32,7 @@ repos:

# bandit - find common security issues
- repo: https://github.com/pycqa/bandit
rev: 1.9.2
rev: 1.9.3
hooks:
- id: bandit
name: bandit
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"

FROM python-base AS builder-base

COPY --from=ghcr.io/astral-sh/uv:0.9.18 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.9.26 /uv /uvx /bin/

WORKDIR $WORKDIR_PATH

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
## Prerequisites

- [Python](https://www.python.org/downloads/) **>=3.14.0 <3.15.0** (_tested with 3.14.2_)
- [pre-commit](https://pre-commit.com/#install) **>=3.2.0 <5.0.0** (_tested with 4.5.0_)
- [uv](https://docs.astral.sh/uv/getting-started/installation/) **>=0.9.16** (_tested with 0.9.18_)
- [pre-commit](https://pre-commit.com/#install) **>=3.2.0 <5.0.0** (_tested with 4.5.1_)
- [uv](https://docs.astral.sh/uv/getting-started/installation/) **>=0.9.16** (_tested with 0.9.26_)
- [docker](https://docs.docker.com/get-docker/) (_optional_)

---
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"mypy>=1.19.1",
"bandit>=1.9.2",
"ruff>=0.14.9",
"bandit>=1.9.3",
"ruff>=0.14.13",
]

[tool.uv]
Expand Down
Loading