Skip to content

Commit 2bb5e7e

Browse files
authored
Merge pull request #1881 from pypa/update-dependencies-pr
[Bot] Update dependencies
2 parents 84dc0b3 + becb053 commit 2bb5e7e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docker/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,22 +192,22 @@ RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
192192
FROM build_cpython AS build_cpython313
193193
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
194194
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
195-
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.10
195+
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.11
196196

197197
FROM build_cpython AS build_cpython313_nogil
198198
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
199199
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
200-
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.10 nogil
200+
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.11 nogil
201201

202202
FROM build_cpython AS build_cpython314
203203
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
204204
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
205-
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh hugo@python.org https://github.com/login/oauth 3.14.1
205+
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh hugo@python.org https://github.com/login/oauth 3.14.2
206206

207207
FROM build_cpython AS build_cpython314_nogil
208208
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
209209
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
210-
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh hugo@python.org https://github.com/login/oauth 3.14.1 nogil
210+
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh hugo@python.org https://github.com/login/oauth 3.14.2 nogil
211211

212212

213213
FROM runtime_base

docker/build_scripts/install-git-lfs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ fi
3131

3232
tar -Ozxf "${MY_DIR}/git-lfs-core-gpg-keys" | gpg --import -
3333

34-
curl -fsSLo "${GIT_LFS_SHA256}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/sha256sums.asc"
35-
curl -fsSLo "${GIT_LFS_ARCHIVE}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/${GIT_LFS_ARCHIVE}"
34+
curl -fsSL --retry 10 -o "${GIT_LFS_SHA256}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/sha256sums.asc"
35+
curl -fsSL --retry 10 -o "${GIT_LFS_ARCHIVE}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/${GIT_LFS_ARCHIVE}"
3636

3737
gpg -d "${GIT_LFS_SHA256}" | grep "${GIT_LFS_ARCHIVE}" | sha256sum -c
3838
if [ "${AUDITWHEEL_POLICY}" != "manylinux2014" ]; then

0 commit comments

Comments
 (0)