diff --git a/env/base/Dockerfile b/env/base/Dockerfile index f9e83e6f..afc6f77c 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 55cfa7ad..5c3b5d63 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 \ diff --git a/pyproject.toml b/pyproject.toml index 82fc5c40..17574b8f 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]