Skip to content

Commit 0dd9d05

Browse files
ChrisLoveringjb3
authored andcommitted
Update to Python 3.13.6
1 parent eed84aa commit 0dd9d05

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,20 @@ RUN apt-get -y update \
2828
tk-dev \
2929
&& rm -rf /var/lib/apt/lists/*
3030

31-
RUN git clone -b v2.6.5 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
31+
RUN git clone -b v2.6.7 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT
3232

3333
COPY --link scripts/build_python.sh /
3434

3535
# ------------------------------------------------------------------------------
3636
FROM builder-py-base AS builder-py-3_13
37-
RUN /build_python.sh 3.13.5
37+
RUN /build_python.sh 3.13.6
3838
# ------------------------------------------------------------------------------
3939
FROM builder-py-base AS builder-py-3_13t
40-
# This can't be bumped to latest until https://github.com/python/cpython/issues/135734 is resolved.
41-
RUN /build_python.sh 3.13.2t
40+
# https://github.com/python/cpython/issues/135734 will be released in 3.13.8
41+
# until then test-modules cannot be disabled for free-threaded 3.13.
42+
ENV PYTHON_CONFIGURE_OPTS='--enable-optimizations --with-lto \
43+
--with-system-expat --without-ensurepip'
44+
RUN /build_python.sh 3.13.6t
4245
# ------------------------------------------------------------------------------
4346
FROM builder-py-base AS builder-py-3_14
4447
RUN /build_python.sh 3.14.0rc1

0 commit comments

Comments
 (0)