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 .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.13
rev: v0.15.1
hooks:
- id: ruff
name: ruff
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.14.2
3.14.3
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14.2-slim-trixie AS python-base
FROM python:3.14.3-slim-trixie AS python-base

ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
Expand All @@ -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.26 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.10.3 /uv /uvx /bin/

WORKDIR $WORKDIR_PATH

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

## Prerequisites

- [Python](https://www.python.org/downloads/) **>=3.14.0 <3.15.0** (_tested with 3.14.2_)
- [Python](https://www.python.org/downloads/) **>=3.14.0 <3.15.0** (_tested with 3.14.3_)
- [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_)
- [uv](https://docs.astral.sh/uv/getting-started/installation/) **>=0.9.30** (_tested with 0.10.3_)
- [docker](https://docs.docker.com/get-docker/) (_optional_)

---
Expand Down Expand Up @@ -159,7 +159,7 @@ collected 1 item

tests/test_python_boilerplate.py::test_hello_world PASSED

---------- coverage: platform linux, python 3.14.2-final-0 -----------
---------- coverage: platform linux, python 3.14.3-final-0 -----------
Name Stmts Miss Cover
--------------------------------------------------------
src/python_boilerplate/__init__.py 1 0 100%
Expand Down
14 changes: 11 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage = "https://github.com/smarlhens/python-boilerplate#readme"
repository = "https://github.com/smarlhens/python-boilerplate"

[build-system]
requires = ["uv_build>=0.9.0,<0.10.0"]
requires = ["uv_build>=0.9.30,<0.11.0"]
build-backend = "uv_build"

[dependency-groups]
Expand All @@ -23,11 +23,11 @@ dev = [
"pytest-cov>=7.0.0",
"mypy>=1.19.1",
"bandit>=1.9.3",
"ruff>=0.14.13",
"ruff>=0.15.1",
]

[tool.uv]
required-version = ">=0.9.16"
required-version = ">=0.9.30"

[tool.pytest.ini_options]
addopts = "-vvv"
Expand Down Expand Up @@ -77,6 +77,7 @@ extend-select = [
"PIE796",
"PIE807",
"PIE810",
"PLC",
"PLR",
"RET502",
"RET503",
Expand All @@ -86,12 +87,19 @@ extend-select = [
"RUF032",
"RUF033",
"RUF034",
"RUF037",
"RUF041",
"RUF043",
"RUF046",
"RUF057",
"RUF059",
"RUF060",
"RUF061",
"RUF064",
"RUF100",
"RUF102",
"RUF103",
"RUF104",
"S101",
"T20",
"UP",
Expand Down
Loading