From d2020531a7e7609440d134f7823af16d5adcaab1 Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Wed, 15 Oct 2025 09:37:34 -0500 Subject: [PATCH 1/2] chore: update Dockerfile to use py 3.12 This version should match the same version we run active tests on. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d3f0a4c3..3e9d6edc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG INSTALL_EXTRAS=irc,XMPP,telegram,slack -FROM python:3.9 AS build +FROM python:3.12 AS build ARG INSTALL_EXTRAS WORKDIR /wheel @@ -8,7 +8,7 @@ WORKDIR /wheel COPY . . RUN pip wheel --wheel-dir=/wheel wheel . .[${INSTALL_EXTRAS}] -FROM python:3.9-slim +FROM python:3.12-slim ARG INSTALL_EXTRAS RUN --mount=from=build,source=/wheel,target=/wheel \ From e7dbcb794c7aae8362ca06be6d629c97b5c9dfd8 Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Wed, 15 Oct 2025 09:39:46 -0500 Subject: [PATCH 2/2] docs: add details into CHANGES --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index 838926129..f01627087 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -31,6 +31,7 @@ fixes: - refactor: use importlib to find plugins in entry_points (#1669, #1733) - chore: bump setuptools to >=78.1.1 (#1734) - docs: update tox chat server URLs (#1739) +- chore: update Dockerfile python version (#1744) v6.2.0 (2024-01-01)