From ade7bfa996abd8f130dd3c8fc425bcce4a0394af Mon Sep 17 00:00:00 2001 From: Helmut Konrad Schewe Date: Fri, 14 Aug 2026 03:00:42 +0200 Subject: [PATCH 1/2] chore(requirements): upgrade pyproject.toml --- pyproject.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 82fc5c4..17574b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,21 +14,21 @@ authors = [ { name = "Helmut Konrad Schewe", email = "helmutus@outlook.com" }, ] dependencies = [ - "utilo>=2.109.0,<3.0.0", + "utilo>=2.110.2,<3.0.0", "utilosafe>=1.0.0,<2.0.0", "semver>=3.0.4,<4.0.0", - "python_semantic_release>=10.5.3,<11.0.0", - "docker >=7.1.0,<8.0.0", + "python-semantic-release>=10.6.2,<11.0.0", + "docker>=7.2.0,<8.0.0", "yapf == 0.43.0", - "isort==8.0.1", + "isort==9.0.1", "bandit==1.9.4", - "pylint==4.0.6", + "pylint==4.0.8", "pytest==9.1.1", "pytest-xdist == 3.8.0", "pytest-cov == 7.1.0", - "build==1.5.0", - "virtualenv>=21.5.1,<22.0.0", - "setuptools == 82.0.1", + "build==1.6.0", + "virtualenv>=21.7.8,<22.0.0", + "setuptools==84.0.0", "tomli-w==1.2.0", "yamlfix==1.19.1", ] @@ -68,7 +68,7 @@ doc = [ "commonmark==0.9.2", "recommonmark == 0.7.1", "Sphinx == 9.1.0", - "sphinx-autodoc-typehints==3.12.0", + "sphinx-autodoc-typehints==3.13.5", ] [project.urls] From 4ab55b63522769e9a3b4160058809715120cf9d9 Mon Sep 17 00:00:00 2001 From: Helmut Konrad Schewe Date: Fri, 14 Aug 2026 03:03:06 +0200 Subject: [PATCH 2/2] feat(docker): reduce complexity --- env/base/Dockerfile | 3 +++ env/python/Dockerfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/env/base/Dockerfile b/env/base/Dockerfile index f9e83e6..afc6f77 100644 --- a/env/base/Dockerfile +++ b/env/base/Dockerfile @@ -11,6 +11,9 @@ FROM alpine:3.23.3 LABEL maintainer="Helmut Konrad Schewe " +ENV SHARED_TMP=/tmp/shared/ +ENV BAW=/tmp/baw/ + # ALPINE RUN apk add --no-cache \ git \ diff --git a/env/python/Dockerfile b/env/python/Dockerfile index 55cfa7a..5c3b5d6 100644 --- a/env/python/Dockerfile +++ b/env/python/Dockerfile @@ -11,6 +11,9 @@ FROM python:3.12-slim LABEL maintainer="Helmut Konrad Schewe " +ENV SHARED_TMP=/tmp/shared/ +ENV BAW=/tmp/baw/ + RUN apt-get update \ && apt-get install -y \ git \