From 02df7f7424bc149ab111b46efd643255e3e852e4 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Thu, 3 Sep 2026 10:58:15 +0300 Subject: [PATCH 1/2] CI: python 3.15-rc is added --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c9295c1..382c4118 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,6 +110,10 @@ jobs: python: "3.14" postgres: "17" case_suffix: "py3_14_xx-pg17_xx" + - platform: "alpine" + python: "3.15-rc" + postgres: "17" + case_suffix: "py3_15_rc-pg17_xx" - platform: "alpine" python: "3.12" postgres: "10" From 6bd3684215db42a9a30c8710b999e8407787e918 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Thu, 3 Sep 2026 12:37:25 +0300 Subject: [PATCH 2/2] fix: Dockerfile--alpine.tmpl is updated, too (py3.15) --- Dockerfile--alpine.tmpl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile--alpine.tmpl b/Dockerfile--alpine.tmpl index d7cbc15d..1b5aa32d 100644 --- a/Dockerfile--alpine.tmpl +++ b/Dockerfile--alpine.tmpl @@ -77,6 +77,10 @@ ENV PYTHON_VERSION=3.13 FROM base2_with_python-3 AS base3_with_python-3.14 ENV PYTHON_VERSION=3.14 +# --------------------------------------------- base3_with_python-3.15-rc +FROM base2_with_python-3 AS base3_with_python-3.15-rc +ENV PYTHON_VERSION=3.15-dev + # --------------------------------------------- final FROM base3_with_python-${PYTHON_VERSION} AS final