Skip to content

Commit a0bd905

Browse files
authored
chore: update Dockerfile to use py 3.12 (#1744)
* chore: update Dockerfile to use py 3.12 This version should match the same version we run active tests on. * docs: add details into CHANGES
1 parent ce4f0fa commit a0bd905

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ fixes:
3131
- refactor: use importlib to find plugins in entry_points (#1669, #1733)
3232
- chore: bump setuptools to >=78.1.1 (#1734)
3333
- docs: update tox chat server URLs (#1739)
34+
- chore: update Dockerfile python version (#1744)
3435

3536

3637
v6.2.0 (2024-01-01)

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
ARG INSTALL_EXTRAS=irc,XMPP,telegram,slack
22

3-
FROM python:3.9 AS build
3+
FROM python:3.12 AS build
44
ARG INSTALL_EXTRAS
55

66
WORKDIR /wheel
77

88
COPY . .
99
RUN pip wheel --wheel-dir=/wheel wheel . .[${INSTALL_EXTRAS}]
1010

11-
FROM python:3.9-slim
11+
FROM python:3.12-slim
1212
ARG INSTALL_EXTRAS
1313

1414
RUN --mount=from=build,source=/wheel,target=/wheel \

0 commit comments

Comments
 (0)