Skip to content

Commit 9422a8f

Browse files
committed
chore: update Python 3.12.6
Refs: https://www.python.org/downloads/release/python-3126/ Signed-off-by: Mike Fiedler <[email protected]>
1 parent 6b5f6bf commit 9422a8f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.4
1+
3.12.6

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ version: 2
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.11"
11+
python: "3.12"
1212
commands:
1313
- ./bin/rtd-docs

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN NODE_ENV=production npm run build
3636

3737

3838
# We'll build a light-weight layer along the way with just docs stuff
39-
FROM python:3.12.4-slim-bookworm AS docs
39+
FROM python:3.12.6-slim-bookworm AS docs
4040

4141
# By default, Docker has special steps to avoid keeping APT caches in the layers, which
4242
# is good, but in our case, we're going to mount a special cache volume (kept between
@@ -105,7 +105,7 @@ USER docs
105105

106106
# Now we're going to build our actual application, but not the actual production
107107
# image that it gets deployed into.
108-
FROM python:3.12.4-slim-bookworm AS build
108+
FROM python:3.12.6-slim-bookworm AS build
109109

110110
# Define whether we're building a production or a development image. This will
111111
# generally be used to control whether or not we install our development and
@@ -189,7 +189,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
189189

190190
# Now we're going to build our actual application image, which will eventually
191191
# pull in the static files that were built above.
192-
FROM python:3.12.4-slim-bookworm
192+
FROM python:3.12.6-slim-bookworm
193193

194194
# Setup some basic environment variables that are ~never going to change.
195195
ENV PYTHONUNBUFFERED 1

0 commit comments

Comments
 (0)