Skip to content

Commit ed56263

Browse files
authored
bump python 3.13.1 -> 3.13.2 (pypi#17637)
1 parent d645457 commit ed56263

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.1
1+
3.13.2

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN NODE_ENV=production npm run build
3838

3939

4040
# We'll build a light-weight layer along the way with just docs stuff
41-
FROM python:3.13.1-slim-bookworm AS docs
41+
FROM python:3.13.2-slim-bookworm AS docs
4242

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

108108
# Now we're going to build our actual application, but not the actual production
109109
# image that it gets deployed into.
110-
FROM python:3.13.1-slim-bookworm AS build
110+
FROM python:3.13.2-slim-bookworm AS build
111111

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

192192
# Now we're going to build our actual application image, which will eventually
193193
# pull in the static files that were built above.
194-
FROM python:3.13.1-slim-bookworm
194+
FROM python:3.13.2-slim-bookworm
195195

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

0 commit comments

Comments
 (0)