File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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
3333COPY --link scripts/build_python.sh /
3434
3535# ------------------------------------------------------------------------------
3636FROM 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# ------------------------------------------------------------------------------
3939FROM 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# ------------------------------------------------------------------------------
4346FROM builder-py-base AS builder-py-3_14
4447RUN /build_python.sh 3.14.0rc1
You can’t perform that action at this time.
0 commit comments