Skip to content

fix(deps): update all go dependencies main (main)#42801

Merged
aanm merged 1 commit intomainfrom
renovate/main-all-go-deps-main
Dec 3, 2025
Merged

fix(deps): update all go dependencies main (main)#42801
aanm merged 1 commit intomainfrom
renovate/main-all-go-deps-main

Conversation

@cilium-renovate
Copy link
Copy Markdown
Contributor

@cilium-renovate cilium-renovate bot commented Nov 16, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
github.com/cilium/charts require digest 37f5692 -> 2cdd64e age confidence
github.com/google/renameio/v2 require patch v2.0.0 -> v2.0.1 age confidence
github.com/prometheus/common require patch v0.67.2 -> v0.67.4 age confidence
go.etcd.io/etcd/api/v3 require patch v3.6.5 -> v3.6.6 age confidence
go.etcd.io/etcd/client/pkg/v3 require patch v3.6.5 -> v3.6.6 age confidence
go.etcd.io/etcd/client/v3 require patch v3.6.5 -> v3.6.6 age confidence
go.uber.org/zap require patch v1.27.0 -> v1.27.1 age confidence
golang.org/x/exp require digest a4bb9ff -> 87e1e73 age confidence
golang.org/x/mod require minor v0.29.0 -> v0.30.0 age confidence
golang.org/x/tools require minor v0.38.0 -> v0.39.0 age confidence
google.golang.org/genproto/googleapis/rpc require digest f26f940 -> 79d6a2a age confidence
google.golang.org/grpc require minor v1.76.0 -> v1.77.0 age confidence
k8s.io/endpointslice require patch v0.34.1 -> v0.34.2 age confidence

Release Notes

google/renameio (github.com/google/renameio/v2)

v2.0.1

Compare Source

prometheus/common (github.com/prometheus/common)

v0.67.4: / 2025-11-18

Compare Source

What's Changed

Full Changelog: prometheus/common@v0.67.3...v0.67.4

v0.67.3: / 2025-11-18

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/common@v0.67.2...v0.67.3

etcd-io/etcd (go.etcd.io/etcd/api/v3)

v3.6.6

Compare Source

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.6

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version

# start a local etcd server
/tmp/etcd-download-test/etcd

# write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
macOS (Darwin)
ETCD_VER=v3.6.6

# choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
Docker

etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

ETCD_VER=v3.6.6

rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
  docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
  docker run \
  -p 2379:2379 \
  -p 2380:2380 \
  --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
  --name etcd-gcr-${ETCD_VER} \
  gcr.io/etcd-development/etcd:${ETCD_VER} \
  /usr/local/bin/etcd \
  --name s1 \
  --data-dir /etcd-data \
  --listen-client-urls http://0.0.0.0:2379 \
  --advertise-client-urls http://0.0.0.0:2379 \
  --listen-peer-urls http://0.0.0.0:2380 \
  --initial-advertise-peer-urls http://0.0.0.0:2380 \
  --initial-cluster s1=http://0.0.0.0:2380 \
  --initial-cluster-token tkn \
  --initial-cluster-state new \
  --log-level info \
  --logger zap \
  --log-outputs stderr

docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
uber-go/zap (go.uber.org/zap)

v1.27.1

Compare Source

Enhancements:

  • #​1501: prevent Object from panicking on nils
  • #​1511: Fix a race condition in WithLazy.

Thanks to @​rabbbit, @​alshopov, @​jquirke, @​arukiidou for their contributions to this release.

grpc/grpc-go (google.golang.org/grpc)

v1.77.0: Release 1.77.0

Compare Source

API Changes

  • mem: Replace the Reader interface with a struct for better performance and maintainability. (#​8669)

Behavior Changes

  • balancer/pickfirst: Remove support for the old pick_first LB policy via the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false. The new pick_first has been the default since v1.71.0. (#​8672)

Bug Fixes

  • xdsclient: Fix a race condition in the ADS stream implementation that could result in resource-not-found errors, causing the gRPC client channel to move to TransientFailure. (#​8605)
  • client: Ignore HTTP status header for gRPC streams. (#​8548)
  • client: Set a read deadline when closing a transport to prevent it from blocking indefinitely on a broken connection. (#​8534)
  • client: Fix a bug where default port 443 was not automatically added to addresses without a specified port when sent to a proxy.
    • Setting environment variable GRPC_EXPERIMENTAL_ENABLE_DEFAULT_PORT_FOR_PROXY_TARGET=false disables this change; please file a bug if any problems are encountered as we will remove this option soon. (#​8613)
  • balancer/pickfirst: Fix a bug where duplicate addresses were not being ignored as intended. (#​8611)
  • server: Fix a bug that caused overcounting of channelz metrics for successful and failed streams. (#​8573)
  • balancer/pickfirst: When configured, shuffle addresses in resolver updates that lack endpoints. Since gRPC automatically adds endpoints to resolver updates, this bug only affects custom LB policies that delegate to pick_first but don't set endpoints. (#​8610)
  • mem: Clear large buffers before re-using. (#​8670)

Performance Improvements

New Features

  • outlierdetection: Add metrics specified in gRFC A91. (#​8644)
  • stats/opentelemetry: Add support for optional label grpc.lb.backend_service in per-call metrics (#​8637)
  • xds: Add support for JWT Call Credentials as specified in gRFC A97. Set environment variable GRPC_EXPERIMENTAL_XDS_BOOTSTRAP_CALL_CREDS=true to enable this feature. (#​8536)
  • experimental/stats: Add support for up/down counters. (#​8581)
kubernetes/endpointslice (k8s.io/endpointslice)

v0.34.2

Compare Source


Configuration

📅 Schedule: Branch creation - "on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@cilium-renovate cilium-renovate bot requested a review from a team as a code owner November 16, 2025 01:06
@cilium-renovate cilium-renovate bot added kind/enhancement This would improve or streamline existing functionality. release-note/misc This PR makes changes that have no direct user impact. renovate/stop-updating Tell Renovate to stop updating PR labels Nov 16, 2025
@github-actions github-actions bot added the kind/community-contribution This was a contribution made by a community member. label Nov 16, 2025
@ciliumbot ciliumbot removed the request for review from HadrienPatte November 16, 2025 01:06
@HadrienPatte
Copy link
Copy Markdown
Member

The helm v4 upgrade can't work as-is since import paths need to be updated to reflect the new major version. This is surprising as renovate is supposed to be configured to handle those situations here with the gomodUpdateImportPaths option.

@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from bb7a3d0 to 83a0460 Compare November 16, 2025 12:18
@cilium-renovate cilium-renovate bot temporarily deployed to release-base-images-renovate November 16, 2025 12:18 Inactive
@julianwiedmann julianwiedmann marked this pull request as draft November 17, 2025 05:09
@aanm aanm self-assigned this Nov 17, 2025
@aanm aanm force-pushed the renovate/main-all-go-deps-main branch from 83a0460 to 5917697 Compare November 17, 2025 11:01
@aanm aanm temporarily deployed to release-base-images-renovate November 17, 2025 11:01 — with GitHub Actions Inactive
@aanm
Copy link
Copy Markdown
Member

aanm commented Nov 17, 2025

blocked by helm/helm#31525

@aanm aanm temporarily deployed to Trigger CI from renovate PRs November 17, 2025 11:17 — with GitHub Actions Inactive
@ciliumbot
Copy link
Copy Markdown

/test

@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from 5917697 to 5738d0e Compare November 18, 2025 10:10
@aanm aanm force-pushed the renovate/main-all-go-deps-main branch from 5738d0e to 49e0895 Compare November 18, 2025 11:17
@aanm aanm temporarily deployed to Trigger CI from renovate PRs November 18, 2025 11:36 — with GitHub Actions Inactive
@ciliumbot
Copy link
Copy Markdown

/test

@joestringer
Copy link
Copy Markdown
Member

Should we just reject the Helmv4 upgrade for now, drop that specific dependency bump, and file an issue to track that migration? Seems like we'll need manual intervention for Helm v4 either way. I recall during the Helm v2 -> v3 transition we had to make custom changes to the docs and add hints/warnings to users.

@HadrienPatte
Copy link
Copy Markdown
Member

Should we just reject the Helmv4 upgrade for now

That seems to be the current plan, see #42817

@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from 49e0895 to 691d312 Compare November 18, 2025 20:10
@joestringer
Copy link
Copy Markdown
Member

Hmm, despite #42817 this PR still seems to include the bump to Helm v4. Not sure the configuration had the desired effect?

@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from 691d312 to dc8f6e7 Compare November 18, 2025 22:10
@cilium-renovate cilium-renovate bot temporarily deployed to Trigger CI from renovate PRs November 19, 2025 15:35 Inactive
@ciliumbot
Copy link
Copy Markdown

/test

@aanm aanm marked this pull request as ready for review November 20, 2025 10:43
@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from 72eb61d to 27afbc7 Compare November 20, 2025 11:19
@cilium-renovate cilium-renovate bot temporarily deployed to Trigger CI from renovate PRs November 20, 2025 11:35 Inactive
@ciliumbot
Copy link
Copy Markdown

/test

@joamaki
Copy link
Copy Markdown
Contributor

joamaki commented Nov 25, 2025

Please skip the statedb bump. There's a persistent issue with ci-ingress. Jarno and I are investigating and will deal with bumping in #42758.

@aanm aanm enabled auto-merge November 26, 2025 10:16
@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from 27afbc7 to c139a13 Compare November 26, 2025 11:09
@cilium-renovate cilium-renovate bot temporarily deployed to release-base-images-renovate November 26, 2025 11:09 Inactive
@cilium-renovate
Copy link
Copy Markdown
Contributor Author

cilium-renovate bot commented Nov 26, 2025

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go mod vendor
go: downloading k8s.io/code-generator v0.34.2
go: downloading github.com/cilium/controller-tools v0.16.5-1
go: downloading github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20250520111509-a70c2aa677fa
go: downloading github.com/cilium/deepequal-gen v0.0.0-20241016021505-f57df2fe2e62
go: downloading github.com/cilium/linters v0.3.0
go: downloading k8s.io/gengo/v2 v2.0.0-20250820003526-c297c0c1eb9d
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/gobuffalo/flect v1.0.3
go: golang.org/x/tools/cmd/goimports imports
	golang.org/x/telemetry/counter: missing go.sum entry for module providing package golang.org/x/telemetry/counter (imported by golang.org/x/tools/cmd/goimports); to add:
	go get golang.org/x/tools/cmd/[email protected]

File name: go.mod
Command failed: make -C Documentation update-cmdref
#0 building with "default" instance using docker driver

#1 [internal] load remote build context
#1 DONE 0.0s

#2 copy /context /
#2 DONE 0.0s

#3 [internal] load metadata for docker.io/library/python:3.11-alpine3.17
#3 DONE 0.0s

#4 [docs-base 1/2] FROM docker.io/library/python:3.11-alpine3.17
#4 DONE 0.0s

#5 [docs-base 2/2] RUN apk add --no-cache --virtual --update     aspell-en     nodejs     npm     bash     ca-certificates     enchant2     enchant2-dev     imagemagick     git     libc6-compat     py-pip     python3     py3-sphinx     gcc     musl-dev     && true
#5 0.126 fetch https://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz
#5 0.234 fetch https://dl-cdn.alpinelinux.org/alpine/v3.17/community/x86_64/APKINDEX.tar.gz
#5 0.410 (1/136) Installing aspell-en (2020.12.07-r0)
#5 0.455 (2/136) Upgrading musl (1.2.3-r5 -> 1.2.3-r6)
#5 0.463 (3/136) Installing brotli-libs (1.0.9-r9)
#5 0.472 (4/136) Installing c-ares (1.19.1-r1)
#5 0.476 (5/136) Installing libgcc (12.2.1_git20220924-r4)
#5 0.479 (6/136) Installing icu-data-en (72.1-r1)
#5 0.498 Executing icu-data-en-72.1-r1.post-install
#5 0.500 *
#5 0.500 * If you need ICU with non-English locales and legacy charset support, install
#5 0.500 * package icu-data-full.
#5 0.500 *
#5 0.500 (7/136) Installing libstdc++ (12.2.1_git20220924-r4)
#5 0.517 (8/136) Installing icu-libs (72.1-r1)
#5 0.549 (9/136) Installing nghttp2-libs (1.51.0-r2)
#5 0.552 (10/136) Installing nodejs (18.20.1-r0)
#5 0.781 (11/136) Installing npm (9.1.2-r0)
#5 0.959 (12/136) Installing bash (5.2.15-r0)
#5 0.978 Executing bash-5.2.15-r0.post-install
#5 0.980 (13/136) Installing aspell-libs (0.60.8-r2)
#5 1.001 (14/136) Installing libblkid (2.38.1-r1)
#5 1.006 (15/136) Installing libmount (2.38.1-r1)
#5 1.012 (16/136) Installing pcre2 (10.42-r0)
#5 1.021 (17/136) Installing glib (2.74.7-r0)
#5 1.067 (18/136) Installing nuspell-libs (5.1.2-r1)
#5 1.072 (19/136) Installing enchant2 (2.3.3-r1)
#5 1.077 (20/136) Installing pkgconf (1.9.4-r0)
#5 1.080 (21/136) Installing bzip2-dev (1.0.8-r4)
#5 1.085 (22/136) Installing libxml2 (2.10.4-r0)
#5 1.095 (23/136) Installing libxml2-utils (2.10.4-r0)
#5 1.099 (24/136) Installing docbook-xml (4.5-r8)
#5 1.124 Executing docbook-xml-4.5-r8.post-install
#5 1.130 (25/136) Installing libgpg-error (1.46-r1)
#5 1.134 (26/136) Installing libgcrypt (1.10.1-r0)
#5 1.144 (27/136) Installing libxslt (1.1.37-r1)
#5 1.150 (28/136) Installing docbook-xsl (1.79.2-r8)
#5 1.320 Executing docbook-xsl-1.79.2-r8.post-install
#5 1.330 (29/136) Installing gettext-asprintf (0.21.1-r1)
#5 1.334 (30/136) Installing libunistring (1.1-r0)
#5 1.346 (31/136) Installing gettext-libs (0.21.1-r1)
#5 1.357 (32/136) Installing libgomp (12.2.1_git20220924-r4)
#5 1.362 (33/136) Installing gettext (0.21.1-r1)
#5 1.384 (34/136) Installing gettext-dev (0.21.1-r1)
#5 1.399 (35/136) Upgrading libexpat (2.5.0-r0 -> 2.6.4-r0)
#5 1.405 (36/136) Installing mpdecimal (2.5.1-r1)
#5 1.409 (37/136) Installing python3 (3.10.15-r0)
#5 1.872 (38/136) Installing linux-headers (5.19.5-r0)
#5 1.988 (39/136) Installing libffi-dev (3.4.4-r0)
#5 1.992 (40/136) Installing bsd-compat-headers (0.7.2-r3)
#5 1.996 (41/136) Installing ncurses-dev (6.3_p20221119-r1)
#5 2.003 (42/136) Installing libedit (20221030.3.1-r0)
#5 2.007 (43/136) Installing libedit-dev (20221030.3.1-r0)
#5 2.011 (44/136) Installing zlib-dev (1.2.13-r0)
#5 2.015 (45/136) Installing libpcre2-16 (10.42-r0)
#5 2.023 (46/136) Installing libpcre2-32 (10.42-r0)
#5 2.030 (47/136) Installing pcre2-dev (10.42-r0)
#5 2.050 (48/136) Installing libfdisk (2.38.1-r1)
#5 2.056 (49/136) Installing libsmartcols (2.38.1-r1)
#5 2.060 (50/136) Installing util-linux-dev (2.38.1-r1)
#5 2.082 (51/136) Installing glib-dev (2.74.7-r0)
#5 2.126 (52/136) Installing enchant2-dev (2.3.3-r1)
#5 2.129 (53/136) Installing libxau (1.0.10-r0)
#5 2.132 (54/136) Installing libmd (1.0.4-r0)
#5 2.136 (55/136) Installing libbsd (0.11.7-r0)
#5 2.139 (56/136) Installing libxdmcp (1.1.4-r0)
#5 2.144 (57/136) Installing libxcb (1.15-r0)
#5 2.157 (58/136) Installing libx11 (1.8.7-r0)
#5 2.195 (59/136) Installing libxext (1.3.5-r0)
#5 2.199 (60/136) Installing libpng (1.6.44-r0)
#5 2.203 (61/136) Installing freetype (2.12.1-r0)
#5 2.213 (62/136) Installing fontconfig (2.14.1-r0)
#5 2.229 (63/136) Installing lcms2 (2.14-r0)
#5 2.235 (64/136) Installing libltdl (2.4.7-r1)
#5 2.238 (65/136) Installing imagemagick-libs (7.1.0.62-r0)
#5 2.262 (66/136) Installing libxrender (0.9.11-r0)
#5 2.265 (67/136) Installing pixman (0.42.2-r0)
#5 2.272 (68/136) Installing cairo (1.17.6-r3)
#5 2.283 (69/136) Installing dbus-libs (1.14.8-r0)
#5 2.289 (70/136) Installing avahi-libs (0.8-r6)
#5 2.293 (71/136) Installing gmp (6.2.1-r2)
#5 2.301 (72/136) Installing nettle (3.8.1-r0)
#5 2.309 (73/136) Installing p11-kit (0.24.1-r1)
#5 2.318 (74/136) Installing libtasn1 (4.19.0-r0)
#5 2.321 (75/136) Installing gnutls (3.7.8-r3)
#5 2.336 (76/136) Installing cups-libs (2.4.9-r0)
#5 2.343 (77/136) Installing jbig2dec (0.19-r1)
#5 2.347 (78/136) Installing libjpeg-turbo (2.1.4-r0)
#5 2.358 (79/136) Installing libwebp (1.2.4-r3)
#5 2.366 (80/136) Installing zstd-libs (1.5.5-r0)
#5 2.380 (81/136) Installing tiff (4.4.0-r4)
#5 2.423 (82/136) Installing ghostscript (10.01.2-r0)
#5 2.810 (83/136) Installing aom-libs (3.5.0-r0)
#5 2.856 (84/136) Installing libde265 (1.0.15-r0)
#5 2.865 (85/136) Installing numactl (2.0.16-r1)
#5 2.868 (86/136) Installing x265-libs (3.5-r3)
#5 2.934 (87/136) Installing libheif (1.13.0-r0)
#5 2.943 (88/136) Installing libjxl (0.7.0-r0)
#5 2.969 (89/136) Installing cairo-gobject (1.17.6-r3)
#5 2.972 (90/136) Installing shared-mime-info (2.2-r2)
#5 2.984 (91/136) Installing gdk-pixbuf (2.42.12-r0)
#5 2.990 (92/136) Installing libxft (2.3.7-r0)
#5 2.994 (93/136) Installing fribidi (1.0.12-r0)
#5 2.998 (94/136) Installing graphite2 (1.3.14-r2)
#5 3.002 (95/136) Installing harfbuzz (5.3.1-r1)
#5 3.016 (96/136) Installing pango (1.50.13-r0)
#5 3.025 (97/136) Installing librsvg (2.55.1-r0)
#5 3.079 (98/136) Installing imagemagick (7.1.0.62-r0)
#5 3.131 (99/136) Installing libcurl (8.9.0-r0)
#5 3.139 (100/136) Installing git (2.39.5-r0)
#5 3.197 (101/136) Installing libc6-compat (1.2.3-r6)
#5 3.200 (102/136) Installing py3-six (1.16.0-r3)
#5 3.203 (103/136) Installing py3-retrying (1.3.3-r3)
#5 3.207 (104/136) Installing py3-parsing (3.0.9-r0)
#5 3.216 (105/136) Installing py3-packaging (21.3-r2)
#5 3.222 (106/136) Installing py3-setuptools (70.3.0-r0)
#5 3.302 (107/136) Installing py3-pip (22.3.1-r1)
#5 3.456 (108/136) Installing py3-tz (2023.3-r0)
#5 3.527 (109/136) Installing py3-babel (2.11.0-r0)
#5 3.789 (110/136) Installing py3-docutils (0.19-r1)
#5 3.843 (111/136) Installing py3-imagesize (1.4.1-r0)
#5 3.847 (112/136) Installing py3-markupsafe (2.1.1-r1)
#5 3.862 (113/136) Installing py3-jinja2 (3.1.4-r0)
#5 3.875 (114/136) Installing py3-pygments (2.13.0-r0)
#5 3.974 (115/136) Installing py3-certifi (2022.12.7-r0)
#5 3.978 (116/136) Installing py3-charset-normalizer (3.0.1-r0)
#5 3.989 (117/136) Installing py3-idna (3.4-r2)
#5 3.996 (118/136) Installing py3-urllib3 (1.26.18-r0)
#5 4.109 (119/136) Installing py3-requests (2.28.1-r1)
#5 4.118 (120/136) Installing py3-snowballstemmer (2.2.0-r0)
#5 4.134 (121/136) Installing py3-alabaster (0.7.12-r5)
#5 4.139 (122/136) Installing py3-sphinxcontrib-applehelp (1.0.2-r3)
#5 4.158 (123/136) Installing py3-sphinxcontrib-devhelp (1.0.2-r3)
#5 4.177 (124/136) Installing py3-sphinxcontrib-htmlhelp (2.0.0-r2)
#5 4.197 (125/136) Installing py3-sphinxcontrib-jsmath (1.0.1-r3)
#5 4.202 (126/136) Installing py3-sphinxcontrib-serializinghtml (1.1.5-r2)
#5 4.222 (127/136) Installing py3-sphinxcontrib-qthelp (1.0.3-r3)
#5 4.241 (128/136) Installing py3-sphinx (5.3.0-r0)
#5 4.394 (129/136) Installing binutils (2.39-r2)
#5 4.452 (130/136) Installing libatomic (12.2.1_git20220924-r4)
#5 4.456 (131/136) Installing isl25 (0.25-r1)
#5 4.472 (132/136) Installing mpfr4 (4.1.0-r0)
#5 4.488 (133/136) Installing mpc1 (1.2.1-r1)
#5 4.492 (134/136) Installing gcc (12.2.1_git20220924-r4)
#5 5.163 (135/136) Installing musl-dev (1.2.3-r6)
#5 5.223 (136/136) Installing --update (20251126.152318)
#5 5.236 Executing busybox-1.35.0-r29.trigger
#5 5.242 Executing glib-2.74.7-r0.trigger
#5 5.245 No schema files found: doing nothing.
#5 5.245 Executing fontconfig-2.14.1-r0.trigger
#5 5.255 Executing shared-mime-info-2.2-r2.trigger
#5 5.695 Executing gdk-pixbuf-2.42.12-r0.trigger
#5 5.719 OK: 563 MiB in 171 packages
#5 DONE 6.6s

#6 [docs-builder 1/3] ADD ./requirements.txt /tmp/requirements.txt
#6 DONE 0.0s

#7 [docs-builder 2/3] RUN pip install -r /tmp/requirements.txt
#7 1.883 Collecting sphinx-rtd-theme-cilium@ git+https://github.com/cilium/sphinx_rtd_theme.git@5e45810d0af338f8a7a6337b0377412ddf973dbc (from -r /tmp/requirements.txt (line 6))
#7 1.884   Cloning https://github.com/cilium/sphinx_rtd_theme.git (to revision 5e45810d0af338f8a7a6337b0377412ddf973dbc) to /tmp/pip-install-iqjrckg9/sphinx-rtd-theme-cilium_93972c8bc20c4008a83a209e6d263420
#7 1.885   Running command git clone --filter=blob:none --quiet https://github.com/cilium/sphinx_rtd_theme.git /tmp/pip-install-iqjrckg9/sphinx-rtd-theme-cilium_93972c8bc20c4008a83a209e6d263420
#7 3.093   Running command git rev-parse -q --verify 'sha^5e45810d0af338f8a7a6337b0377412ddf973dbc'
#7 3.094   Running command git fetch -q https://github.com/cilium/sphinx_rtd_theme.git 5e45810d0af338f8a7a6337b0377412ddf973dbc
#7 3.434   Running command git checkout -q 5e45810d0af338f8a7a6337b0377412ddf973dbc
#7 4.310   Resolved https://github.com/cilium/sphinx_rtd_theme.git to commit 5e45810d0af338f8a7a6337b0377412ddf973dbc
#7 4.312   Preparing metadata (setup.py): started
#7 4.912   Preparing metadata (setup.py): finished with status 'done'
#7 5.025 Collecting Sphinx==7.1.2 (from -r /tmp/requirements.txt (line 2))
#7 5.026   Obtaining dependency information for Sphinx==7.1.2 from https://files.pythonhosted.org/packages/48/17/325cf6a257d84751a48ae90752b3d8fe0be8f9535b6253add61c49d0d9bc/sphinx-7.1.2-py3-none-any.whl.metadata
#7 5.064   Downloading sphinx-7.1.2-py3-none-any.whl.metadata (5.8 kB)
#7 5.080 Collecting sphinx-autobuild==2021.3.14 (from -r /tmp/requirements.txt (line 3))
#7 5.080   Obtaining dependency information for sphinx-autobuild==2021.3.14 from https://files.pythonhosted.org/packages/7e/7d/8fb7557b6c9298d2bcda57f4d070de443c6355dfb475582378e2aa16a02c/sphinx_autobuild-2021.3.14-py3-none-any.whl.metadata
#7 5.084   Downloading sphinx_autobuild-2021.3.14-py3-none-any.whl.metadata (7.0 kB)
#7 5.102 Collecting semver==3.0.1 (from -r /tmp/requirements.txt (line 8))
#7 5.103   Obtaining dependency information for semver==3.0.1 from https://files.pythonhosted.org/packages/d4/5d/f2b4fe45886238c405ad177ca43911cb1459d08003004da5c27495eb4216/semver-3.0.1-py3-none-any.whl.metadata
#7 5.107   Downloading semver-3.0.1-py3-none-any.whl.metadata (5.5 kB)
#7 5.134 Collecting myst-parser==2.0.0 (from -r /tmp/requirements.txt (line 10))
#7 5.135   Obtaining dependency information for myst-parser==2.0.0 from https://files.pythonhosted.org/packages/1d/f6/6d61a023d758f488e36638076e8a4ec4447a2cdf86938cf6c60cf1c860e6/myst_parser-2.0.0-py3-none-any.whl.metadata
#7 5.139   Downloading myst_parser-2.0.0-py3-none-any.whl.metadata (5.4 kB)
#7 5.156 Collecting sphinx-tabs==3.4.1 (from -r /tmp/requirements.txt (line 11))
#7 5.156   Obtaining dependency information for sphinx-tabs==3.4.1 from https://files.pythonhosted.org/packages/4f/2d/80293fbb2aa82d457f9df0de85800b11e3bfd5008b118bddb303a797e5c5/sphinx_tabs-3.4.1-py3-none-any.whl.metadata
#7 5.160   Downloading sphinx_tabs-3.4.1-py3-none-any.whl.metadata (6.4 kB)
#7 5.171 Collecting sphinx-version-warning==1.1.2 (from -r /tmp/requirements.txt (line 12))
#7 5.171   Obtaining dependency information for sphinx-version-warning==1.1.2 from https://files.pythonhosted.org/packages/55/1a/10984258c3524c9b29b7552fe629a9741c141712dc79c476606e4fe5edac/sphinx_version_warning-1.1.2-py3-none-any.whl.metadata
#7 5.175   Downloading sphinx_version_warning-1.1.2-py3-none-any.whl.metadata (5.0 kB)
#7 5.251 Collecting sphinxcontrib-googleanalytics==0.4 (from -r /tmp/requirements.txt (line 13))
#7 5.251   Obtaining dependency information for sphinxcontrib-googleanalytics==0.4 from https://files.pythonhosted.org/packages/bf/0d/6cadda83ad0ac9deae6d152e0defcbaeca93bea2ed5f502f93ff9e8bc369/sphinxcontrib_googleanalytics-0.4-py3-none-any.whl.metadata
#7 5.255   Downloading sphinxcontrib_googleanalytics-0.4-py3-none-any.whl.metadata (2.0 kB)
#7 5.267 Collecting sphinxcontrib-openapi==0.8.1 (from -r /tmp/requirements.txt (line 14))
#7 5.267   Obtaining dependency information for sphinxcontrib-openapi==0.8.1 from https://files.pythonhosted.org/packages/0c/37/ed9179f818b296fd722c865b644068772829ea291b35fd15748cce0b65f3/sphinxcontrib_openapi-0.8.1-py3-none-any.whl.metadata
#7 5.271   Downloading sphinxcontrib_openapi-0.8.1-py3-none-any.whl.metadata (2.5 kB)
#7 5.291 Collecting sphinxcontrib-spelling==8.0.0 (from -r /tmp/requirements.txt (line 15))
#7 5.291   Obtaining dependency information for sphinxcontrib-spelling==8.0.0 from https://files.pythonhosted.org/packages/87/f9/ec57149c1ab20efed1305aa89fbcd7a9e4a8edf9ef5fe9b75bdb13e1964e/sphinxcontrib_spelling-8.0.0-py3-none-any.whl.metadata
#7 5.296   Downloading sphinxcontrib_spelling-8.0.0-py3-none-any.whl.metadata (2.9 kB)
#7 5.308 Collecting sphinxcontrib-websupport==1.2.4 (from -r /tmp/requirements.txt (line 16))
#7 5.309   Obtaining dependency information for sphinxcontrib-websupport==1.2.4 from https://files.pythonhosted.org/packages/e9/e5/2a547830845e6e6e5d97b3246fc1e3ec74cba879c9adc5a8e27f1291bca3/sphinxcontrib_websupport-1.2.4-py2.py3-none-any.whl.metadata
#7 5.313   Downloading sphinxcontrib_websupport-1.2.4-py2.py3-none-any.whl.metadata (1.5 kB)
#7 5.323 Collecting sphinxext-rediraffe==0.2.7 (from -r /tmp/requirements.txt (line 17))
#7 5.324   Obtaining dependency information for sphinxext-rediraffe==0.2.7 from https://files.pythonhosted.org/packages/76/4f/c8797e796199e55cf6c8979ecdf5f4b09b81e93f87b3193c759faea63263/sphinxext_rediraffe-0.2.7-py3-none-any.whl.metadata
#7 5.328   Downloading sphinxext_rediraffe-0.2.7-py3-none-any.whl.metadata (5.5 kB)
#7 5.345 Collecting rstcheck==6.2.0 (from -r /tmp/requirements.txt (line 19))
#7 5.346   Obtaining dependency information for rstcheck==6.2.0 from https://files.pythonhosted.org/packages/d6/a1/45a747d7a534bac89105ed2549f8addf1235c68aa2270dde54d1379407d7/rstcheck-6.2.0-py3-none-any.whl.metadata
#7 5.350   Downloading rstcheck-6.2.0-py3-none-any.whl.metadata (9.5 kB)
#7 5.370 Collecting yamllint==1.32.0 (from -r /tmp/requirements.txt (line 20))
#7 5.370   Obtaining dependency information for yamllint==1.32.0 from https://files.pythonhosted.org/packages/96/b3/ce98068f7598adfdcb0883bacc1c503db151f8fd76affea4dd424418a0f9/yamllint-1.32.0-py3-none-any.whl.metadata
#7 5.375   Downloading yamllint-1.32.0-py3-none-any.whl.metadata (4.2 kB)
#7 5.387 Collecting alabaster==0.7.13 (from -r /tmp/requirements.txt (line 22))
#7 5.387   Obtaining dependency information for alabaster==0.7.13 from https://files.pythonhosted.org/packages/64/88/c7083fc61120ab661c5d0b82cb77079fc1429d3f913a456c1c82cf4658f7/alabaster-0.7.13-py3-none-any.whl.metadata
#7 5.391   Downloading alabaster-0.7.13-py3-none-any.whl.metadata (3.0 kB)
#7 5.402 Collecting annotated-types==0.5.0 (from -r /tmp/requirements.txt (line 23))
#7 5.402   Obtaining dependency information for annotated-types==0.5.0 from https://files.pythonhosted.org/packages/d8/f0/a2ee543a96cc624c35a9086f39b1ed2aa403c6d355dfe47a11ee5c64a164/annotated_types-0.5.0-py3-none-any.whl.metadata
#7 5.407   Downloading annotated_types-0.5.0-py3-none-any.whl.metadata (11 kB)
#7 5.425 Collecting attrs==23.1.0 (from -r /tmp/requirements.txt (line 24))
#7 5.426   Obtaining dependency information for attrs==23.1.0 from https://files.pythonhosted.org/packages/f0/eb/fcb708c7bf5056045e9e98f62b93bd7467eb718b0202e7698eb11d66416c/attrs-23.1.0-py3-none-any.whl.metadata
#7 5.429   Downloading attrs-23.1.0-py3-none-any.whl.metadata (11 kB)
#7 5.447 Collecting Babel==2.12.1 (from -r /tmp/requirements.txt (line 25))
#7 5.447   Obtaining dependency information for Babel==2.12.1 from https://files.pythonhosted.org/packages/df/c4/1088865e0246d7ecf56d819a233ab2b72f7d6ab043965ef327d0731b5434/Babel-2.12.1-py3-none-any.whl.metadata
#7 5.452   Downloading Babel-2.12.1-py3-none-any.whl.metadata (1.3 kB)
#7 5.476 Collecting certifi==2024.7.4 (from -r /tmp/requirements.txt (line 26))
#7 5.476   Obtaining dependency information for certifi==2024.7.4 from https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl.metadata
#7 5.479   Downloading certifi-2024.7.4-py3-none-any.whl.metadata (2.2 kB)
#7 5.586 Collecting charset-normalizer==3.2.0 (from -r /tmp/requirements.txt (line 27))
#7 5.586   Obtaining dependency information for charset-normalizer==3.2.0 from https://files.pythonhosted.org/packages/6f/14/8e317fa69483a2823ea358a77e243c37f23f536a7add1b605460269593b5/charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.metadata
#7 5.591   Downloading charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.metadata (31 kB)
#7 5.615 Collecting click==8.1.7 (from -r /tmp/requirements.txt (line 28))
#7 5.616   Obtaining dependency information for click==8.1.7 from https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl.metadata
#7 5.619   Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)
#7 5.636 Collecting colorama==0.4.6 (from -r /tmp/requirements.txt (line 29))
#7 5.636   Obtaining dependency information for colorama==0.4.6 from https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl.metadata
#7 5.639   Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
#7 5.653 Collecting deepmerge==1.1.0 (from -r /tmp/requirements.txt (line 30))
#7 5.653   Obtaining dependency information for deepmerge==1.1.0 from https://files.pythonhosted.org/packages/59/72/72489ad8d3fe1cf5e5be93bf27ca4b5c792d552a5f667367b32a671a2076/deepmerge-1.1.0-py3-none-any.whl.metadata
#7 5.657   Downloading deepmerge-1.1.0-py3-none-any.whl.metadata (1.9 kB)
#7 5.678 Collecting docutils==0.18.1 (from -r /tmp/requirements.txt (line 31))
#7 5.679   Obtaining dependency information for docutils==0.18.1 from https://files.pythonhosted.org/packages/8d/14/69b4bad34e3f250afe29a854da03acb6747711f3df06c359fa053fae4e76/docutils-0.18.1-py2.py3-none-any.whl.metadata
#7 5.682   Downloading docutils-0.18.1-py2.py3-none-any.whl.metadata (2.9 kB)
#7 5.696 Collecting idna==3.7 (from -r /tmp/requirements.txt (line 32))
#7 5.696   Obtaining dependency information for idna==3.7 from https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl.metadata
#7 5.700   Downloading idna-3.7-py3-none-any.whl.metadata (9.9 kB)
#7 5.711 Collecting imagesize==1.4.1 (from -r /tmp/requirements.txt (line 33))
#7 5.712   Obtaining dependency information for imagesize==1.4.1 from https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl.metadata
#7 5.715   Downloading imagesize-1.4.1-py2.py3-none-any.whl.metadata (1.5 kB)
#7 5.733 Collecting Jinja2==3.1.6 (from -r /tmp/requirements.txt (line 34))
#7 5.733   Obtaining dependency information for Jinja2==3.1.6 from https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl.metadata
#7 5.737   Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
#7 5.769 Collecting jsonschema==4.19.0 (from -r /tmp/requirements.txt (line 35))
#7 5.769   Obtaining dependency information for jsonschema==4.19.0 from https://files.pythonhosted.org/packages/2b/ff/af59fd34bc4d7ac3e6e0cd1f3c10317d329b6c1aee179e8b24ad9a79fbac/jsonschema-4.19.0-py3-none-any.whl.metadata
#7 5.773   Downloading jsonschema-4.19.0-py3-none-any.whl.metadata (8.2 kB)
#7 5.788 Collecting jsonschema-specifications==2023.7.1 (from -r /tmp/requirements.txt (line 36))
#7 5.788   Obtaining dependency information for jsonschema-specifications==2023.7.1 from https://files.pythonhosted.org/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl.metadata
#7 5.792   Downloading jsonschema_specifications-2023.7.1-py3-none-any.whl.metadata (2.8 kB)
#7 5.804 Collecting livereload==2.6.3 (from -r /tmp/requirements.txt (line 37))
#7 5.805   Obtaining dependency information for livereload==2.6.3 from https://files.pythonhosted.org/packages/e3/05/ed67ccf462fff0b559e6ea7b3e3fcb20dec9d57bf90b5c5e72a6f316183e/livereload-2.6.3-py2.py3-none-any.whl.metadata
#7 5.809   Downloading livereload-2.6.3-py2.py3-none-any.whl.metadata (7.4 kB)
#7 5.829 Collecting markdown-it-py==3.0.0 (from -r /tmp/requirements.txt (line 38))
#7 5.829   Obtaining dependency information for markdown-it-py==3.0.0 from https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl.metadata
#7 5.832   Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)
#7 5.899 Collecting MarkupSafe==2.1.3 (from -r /tmp/requirements.txt (line 39))
#7 5.899   Obtaining dependency information for MarkupSafe==2.1.3 from https://files.pythonhosted.org/packages/bb/82/f88ccb3ca6204a4536cf7af5abdad7c3657adac06ab33699aa67279e0744/MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl.metadata
#7 5.903   Downloading MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl.metadata (3.0 kB)
#7 5.937 Collecting mdit-py-plugins==0.4.0 (from -r /tmp/requirements.txt (line 40))
#7 5.937   Obtaining dependency information for mdit-py-plugins==0.4.0 from https://files.pythonhosted.org/packages/e5/3c/fe85f19699a7b40c8f9ce8ecee7e269b9b3c94099306df6f9891bdefeedd/mdit_py_plugins-0.4.0-py3-none-any.whl.metadata
#7 5.941   Downloading mdit_py_plugins-0.4.0-py3-none-any.whl.metadata (2.7 kB)
#7 5.953 Collecting mdurl==0.1.2 (from -r /tmp/requirements.txt (line 41))
#7 5.954   Obtaining dependency information for mdurl==0.1.2 from https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl.metadata
#7 5.957   Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)
#7 5.975 Collecting mistune==2.0.5 (from -r /tmp/requirements.txt (line 42))
#7 5.975   Obtaining dependency information for mistune==2.0.5 from https://files.pythonhosted.org/packages/9f/e5/780d22d19543f339aad583304f58002975b586757aa590cbe7bea5cc6f13/mistune-2.0.5-py2.py3-none-any.whl.metadata
#7 5.979   Downloading mistune-2.0.5-py2.py3-none-any.whl.metadata (1.5 kB)
#7 6.001 Collecting packaging==23.1 (from -r /tmp/requirements.txt (line 43))
#7 6.001   Obtaining dependency information for packaging==23.1 from https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl.metadata
#7 6.004   Downloading packaging-23.1-py3-none-any.whl.metadata (3.1 kB)
#7 6.016 Collecting pathspec==0.11.2 (from -r /tmp/requirements.txt (line 44))
#7 6.017   Obtaining dependency information for pathspec==0.11.2 from https://files.pythonhosted.org/packages/b4/2a/9b1be29146139ef459188f5e420a66e835dda921208db600b7037093891f/pathspec-0.11.2-py3-none-any.whl.metadata
#7 6.020   Downloading pathspec-0.11.2-py3-none-any.whl.metadata (19 kB)
#7 6.031 Collecting picobox==3.0.0 (from -r /tmp/requirements.txt (line 45))
#7 6.031   Obtaining dependency information for picobox==3.0.0 from https://files.pythonhosted.org/packages/26/8c/5f6f6ea1ec78176229e2ed1f619d9cd075ceb4e04d32c1a77918e0bbf7f7/picobox-3.0.0-py3-none-any.whl.metadata
#7 6.035   Downloading picobox-3.0.0-py3-none-any.whl.metadata (2.8 kB)
#7 6.196 Collecting pydantic==2.7.1 (from -r /tmp/requirements.txt (line 46))
#7 6.196   Obtaining dependency information for pydantic==2.7.1 from https://files.pythonhosted.org/packages/ed/76/9a17032880ed27f2dbd490c77a3431cbc80f47ba81534131de3c2846e736/pydantic-2.7.1-py3-none-any.whl.metadata
#7 6.199   Downloading pydantic-2.7.1-py3-none-any.whl.metadata (107 kB)
#7 6.204      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 107.3/107.3 kB 42.6 MB/s eta 0:00:00
#7 7.099 Collecting pydantic_core==2.18.2 (from -r /tmp/requirements.txt (line 47))
#7 7.099   Obtaining dependency information for pydantic_core==2.18.2 from https://files.pythonhosted.org/packages/1f/89/dbe3dd03e0d5c68f50f6aa98607221a304168196ee84e835747705cb7005/pydantic_core-2.18.2-cp311-cp311-musllinux_1_1_x86_64.whl.metadata
#7 7.104   Downloading pydantic_core-2.18.2-cp311-cp311-musllinux_1_1_x86_64.whl.metadata (6.5 kB)
#7 7.127 Collecting pyenchant==3.2.2 (from -r /tmp/requirements.txt (line 48))
#7 7.127   Obtaining dependency information for pyenchant==3.2.2 from https://files.pythonhosted.org/packages/54/4c/a741dddab6ad96f257d90cb4d23067ffadac526c9cab3a99ca6ce3c05477/pyenchant-3.2.2-py3-none-any.whl.metadata
#7 7.131   Downloading pyenchant-3.2.2-py3-none-any.whl.metadata (3.8 kB)
#7 7.155 Collecting Pygments==2.16.1 (from -r /tmp/requirements.txt (line 49))
#7 7.156   Obtaining dependency information for Pygments==2.16.1 from https://files.pythonhosted.org/packages/43/88/29adf0b44ba6ac85045e63734ae0997d3c58d8b1a91c914d240828d0d73d/Pygments-2.16.1-py3-none-any.whl.metadata
#7 7.160   Downloading Pygments-2.16.1-py3-none-any.whl.metadata (2.5 kB)
#7 7.207 Collecting PyYAML==6.0.1 (from -r /tmp/requirements.txt (line 50))
#7 7.207   Obtaining dependency information for PyYAML==6.0.1 from https://files.pythonhosted.org/packages/03/5c/c4671451b2f1d76ebe352c0945d4cd13500adb5d05f5a51ee296d80152f7/PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.metadata
#7 7.283   Downloading PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.metadata (2.1 kB)
#7 7.355 Collecting referencing==0.30.2 (from -r /tmp/requirements.txt (line 51))
#7 7.355   Obtaining dependency information for referencing==0.30.2 from https://files.pythonhosted.org/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl.metadata
#7 7.360   Downloading referencing-0.30.2-py3-none-any.whl.metadata (2.6 kB)
#7 7.392 Collecting requests==2.32.4 (from -r /tmp/requirements.txt (line 52))
#7 7.392   Obtaining dependency information for requests==2.32.4 from https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl.metadata
#7 7.395   Downloading requests-2.32.4-py3-none-any.whl.metadata (4.9 kB)
#7 7.462 Collecting rich==13.5.2 (from -r /tmp/requirements.txt (line 53))
#7 7.462   Obtaining dependency information for rich==13.5.2 from https://files.pythonhosted.org/packages/8d/5f/21a93b2ec205f4b79853ff6e838e3c99064d5dbe85ec6b05967506f14af0/rich-13.5.2-py3-none-any.whl.metadata
#7 7.467   Downloading rich-13.5.2-py3-none-any.whl.metadata (18 kB)
#7 7.814 Collecting rpds-py==0.10.3 (from -r /tmp/requirements.txt (line 54))
#7 7.815   Obtaining dependency information for rpds-py==0.10.3 from https://files.pythonhosted.org/packages/7c/27/cbc097550a44065437938820ce660306c3bdc6d3f4eaaad9b1ee18933cdc/rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl.metadata
#7 7.819   Downloading rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl.metadata (3.7 kB)
#7 7.831 Collecting rstcheck-core==1.1.1 (from -r /tmp/requirements.txt (line 55))
#7 7.832   Obtaining dependency information for rstcheck-core==1.1.1 from https://files.pythonhosted.org/packages/d4/b2/7e81dfbfe6b8c3168eddafc4036ff3a1749c10a6ed9e568fd1e5003280f5/rstcheck_core-1.1.1-py3-none-any.whl.metadata
#7 7.837   Downloading rstcheck_core-1.1.1-py3-none-any.whl.metadata (9.1 kB)
#7 7.855 Collecting shellingham==1.5.3 (from -r /tmp/requirements.txt (line 56))
#7 7.855   Obtaining dependency information for shellingham==1.5.3 from https://files.pythonhosted.org/packages/57/70/0265437683625b2e6491736706d3d679d90e2a26f6bff59f4e46e09872b9/shellingham-1.5.3-py2.py3-none-any.whl.metadata
#7 7.859   Downloading shellingham-1.5.3-py2.py3-none-any.whl.metadata (3.4 kB)
#7 7.873 Collecting six==1.16.0 (from -r /tmp/requirements.txt (line 57))
#7 7.873   Obtaining dependency information for six==1.16.0 from https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl.metadata
#7 7.876   Downloading six-1.16.0-py2.py3-none-any.whl.metadata (1.8 kB)
#7 7.892 Collecting snowballstemmer==2.2.0 (from -r /tmp/requirements.txt (line 58))
#7 7.892   Obtaining dependency information for snowballstemmer==2.2.0 from https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl.metadata
#7 7.895   Downloading snowballstemmer-2.2.0-py2.py3-none-any.whl.metadata (6.5 kB)
#7 7.908 Collecting sphinx_mdinclude==0.5.3 (from -r /tmp/requirements.txt (line 59))
#7 7.908   Obtaining dependency information for sphinx_mdinclude==0.5.3 from https://files.pythonhosted.org/packages/ce/75/7c6e6efb52bec719a6e59a68131d6c2a389b004cb85396e281d9cf245414/sphinx_mdinclude-0.5.3-py3-none-any.whl.metadata
#7 7.913   Downloading sphinx_mdinclude-0.5.3-py3-none-any.whl.metadata (4.1 kB)
#7 7.923 Collecting sphinxcontrib-applehelp==1.0.4 (from -r /tmp/requirements.txt (line 60))
#7 7.923   Obtaining dependency information for sphinxcontrib-applehelp==1.0.4 from https://files.pythonhosted.org/packages/06/c1/5e2cafbd03105ce50d8500f9b4e8a6e8d02e22d0475b574c3b3e9451a15f/sphinxcontrib_applehelp-1.0.4-py3-none-any.whl.metadata
#7 7.927   Downloading sphinxcontrib_applehelp-1.0.4-py3-none-any.whl.metadata (2.7 kB)
#7 7.937 Collecting sphinxcontrib-devhelp==1.0.2 (from -r /tmp/requirements.txt (line 61))
#7 7.938   Obtaining dependency information for sphinxcontrib-devhelp==1.0.2 from https://files.pythonhosted.org/packages/c5/09/5de5ed43a521387f18bdf5f5af31d099605c992fd25372b2b9b825ce48ee/sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl.metadata
#7 7.941   Downloading sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl.metadata (1.4 kB)
#7 7.952 Collecting sphinxcontrib-htmlhelp==2.0.1 (from -r /tmp/requirements.txt (line 62))
#7 7.953   Obtaining dependency information for sphinxcontrib-htmlhelp==2.0.1 from https://files.pythonhosted.org/packages/6e/ee/a1f5e39046cbb5f8bc8fba87d1ddf1c6643fbc9194e58d26e606de4b9074/sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl.metadata
#7 7.956   Downloading sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl.metadata (2.8 kB)
#7 7.968 Collecting sphinxcontrib-httpdomain==1.8.1 (from -r /tmp/requirements.txt (line 63))
#7 7.969   Obtaining dependency information for sphinxcontrib-httpdomain==1.8.1 from https://files.pythonhosted.org/packages/02/49/aad47b8cf27a0d7703f1311aad8c368bb22866ddee1a2d2cd3f69bc45e0c/sphinxcontrib_httpdomain-1.8.1-py2.py3-none-any.whl.metadata
#7 7.972   Downloading sphinxcontrib_httpdomain-1.8.1-py2.py3-none-any.whl.metadata (2.0 kB)
#7 7.981 Collecting sphinxcontrib-jquery==4.1 (from -r /tmp/requirements.txt (line 64))
#7 7.981   Obtaining dependency information for sphinxcontrib-jquery==4.1 from https://files.pythonhosted.org/packages/76/85/749bd22d1a68db7291c89e2ebca53f4306c3f205853cf31e9de279034c3c/sphinxcontrib_jquery-4.1-py2.py3-none-any.whl.metadata
#7 7.985   Downloading sphinxcontrib_jquery-4.1-py2.py3-none-any.whl.metadata (2.6 kB)
#7 7.995 Collecting sphinxcontrib-jsmath==1.0.1 (from -r /tmp/requirements.txt (line 65))
#7 7.996   Obtaining dependency information for sphinxcontrib-jsmath==1.0.1 from https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl.metadata
#7 7.999   Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl.metadata (1.4 kB)
#7 8.010 Collecting sphinxcontrib-qthelp==1.0.3 (from -r /tmp/requirements.txt (line 66))
#7 8.010   Obtaining dependency information for sphinxcontrib-qthelp==1.0.3 from https://files.pythonhosted.org/packages/2b/14/05f9206cf4e9cfca1afb5fd224c7cd434dcc3a433d6d9e4e0264d29c6cdb/sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl.metadata
#7 8.014   Downloading sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl.metadata (1.4 kB)
#7 8.024 Collecting sphinxcontrib-serializinghtml==1.1.5 (from -r /tmp/requirements.txt (line 67))
#7 8.025   Obtaining dependency information for sphinxcontrib-serializinghtml==1.1.5 from https://files.pythonhosted.org/packages/c6/77/5464ec50dd0f1c1037e3c93249b040c8fc8078fdda97530eeb02424b6eea/sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl.metadata
#7 8.028   Downloading sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl.metadata (1.5 kB)
#7 8.071 Collecting tornado==6.5 (from -r /tmp/requirements.txt (line 68))
#7 8.072   Obtaining dependency information for tornado==6.5 from https://files.pythonhosted.org/packages/70/90/e831b7800ec9632d5eb6a0931b016b823efa963356cb1c215f035b6d5d2e/tornado-6.5-cp39-abi3-musllinux_1_2_x86_64.whl.metadata
#7 8.076   Downloading tornado-6.5-cp39-abi3-musllinux_1_2_x86_64.whl.metadata (2.8 kB)
#7 8.101 Collecting typer==0.9.0 (from -r /tmp/requirements.txt (line 69))
#7 8.101   Obtaining dependency information for typer==0.9.0 from https://files.pythonhosted.org/packages/bf/0e/c68adf10adda05f28a6ed7b9f4cd7b8e07f641b44af88ba72d9c89e4de7a/typer-0.9.0-py3-none-any.whl.metadata
#7 8.105   Downloading typer-0.9.0-py3-none-any.whl.metadata (14 kB)
#7 8.127 Collecting typing_extensions==4.7.1 (from -r /tmp/requirements.txt (line 70))
#7 8.127   Obtaining dependency information for typing_extensions==4.7.1 from https://files.pythonhosted.org/packages/ec/6b/63cc3df74987c36fe26157ee12e09e8f9db4de771e0f3404263117e75b95/typing_extensions-4.7.1-py3-none-any.whl.metadata
#7 8.131   Downloading typing_extensions-4.7.1-py3-none-any.whl.metadata (3.1 kB)
#7 8.169 Collecting urllib3==2.5.0 (from -r /tmp/requirements.txt (line 71))
#7 8.169   Obtaining dependency information for urllib3==2.5.0 from https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl.metadata
#7 8.172   Downloading urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB)
#7 8.396 Collecting typer[all]>=0.4.1 (from rstcheck==6.2.0->-r /tmp/requirements.txt (line 19))
#7 8.397   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/78/64/7713ffe4b5983314e9d436a90d5bd4f63b6054e2aca783a3cfc44cb95bbf/typer-0.20.0-py3-none-any.whl.metadata
#7 8.400   Downloading typer-0.20.0-py3-none-any.whl.metadata (16 kB)
#7 8.969 WARNING: typer 0.20.0 does not provide the extra 'all'
#7 8.971 INFO: pip is looking at multiple versions of typer[all] to determine which version is compatible with other requirements. This could take a while.
#7 8.972   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/00/22/35617eee79080a5d071d0f14ad698d325ee6b3bf824fc0467c03b30e7fa8/typer-0.19.2-py3-none-any.whl.metadata
#7 8.976   Downloading typer-0.19.2-py3-none-any.whl.metadata (16 kB)
#7 8.980 WARNING: typer 0.19.2 does not provide the extra 'all'
#7 8.982   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/1e/fa/6473c00b5eb26a2ba427813107699d3e6f4e1a4afad3f7494b17bdef3422/typer-0.19.1-py3-none-any.whl.metadata
#7 8.986   Downloading typer-0.19.1-py3-none-any.whl.metadata (16 kB)
#7 8.991 WARNING: typer 0.19.1 does not provide the extra 'all'
#7 8.993   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/30/5c/3e5e443718ca54ab01a746ceaaea9575af312a4e456426406002994e7c43/typer-0.19.0-py3-none-any.whl.metadata
#7 8.997   Downloading typer-0.19.0-py3-none-any.whl.metadata (16 kB)
#7 9.002 WARNING: typer 0.19.0 does not provide the extra 'all'
#7 9.004   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/55/cc/c476930fbb1649658cb2195144dac1a9899e474bb6433bf35bf37b6946cb/typer-0.18.0-py3-none-any.whl.metadata
#7 9.008   Downloading typer-0.18.0-py3-none-any.whl.metadata (15 kB)
#7 9.012 WARNING: typer 0.18.0 does not provide the extra 'all'
#7 9.014   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/b9/1d/0e129c8cf45b22f9b56250ff40cac9f5d1535b2d33294dcfcb3a7e8f3299/typer-0.17.5-py3-none-any.whl.metadata
#7 9.019   Downloading typer-0.17.5-py3-none-any.whl.metadata (15 kB)
#7 9.023 WARNING: typer 0.17.5 does not provide the extra 'all'
#7 9.025   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/93/72/6b3e70d32e89a5cbb6a4513726c1ae8762165b027af569289e19ec08edd8/typer-0.17.4-py3-none-any.whl.metadata
#7 9.029   Downloading typer-0.17.4-py3-none-any.whl.metadata (15 kB)
#7 9.034 WARNING: typer 0.17.4 does not provide the extra 'all'
#7 9.036   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/ca/e8/b3d537470e8404659a6335e7af868e90657efb73916ef31ddf3d8b9cb237/typer-0.17.3-py3-none-any.whl.metadata
#7 9.039   Downloading typer-0.17.3-py3-none-any.whl.metadata (15 kB)
#7 9.044 WARNING: typer 0.17.3 does not provide the extra 'all'
#7 9.045 INFO: pip is still looking at multiple versions of typer[all] to determine which version is compatible with other requirements. This could take a while.
#7 9.046   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/d2/cf/f9151f9cf0d772a133d116bbe5bdf9e8cc8368310eb54a15482ba5ee4120/typer-0.17.2-py3-none-any.whl.metadata
#7 9.051   Downloading typer-0.17.2-py3-none-any.whl.metadata (15 kB)
#7 9.055 WARNING: typer 0.17.2 does not provide the extra 'all'
#7 9.057   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/00/98/7583b01e605ac530884a4e5527f18127b0e63ee2e5b0ead2269d7fd7a029/typer-0.17.1-py3-none-any.whl.metadata
#7 9.061   Downloading typer-0.17.1-py3-none-any.whl.metadata (15 kB)
#7 9.066 WARNING: typer 0.17.1 does not provide the extra 'all'
#7 9.067   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/3b/24/5e80a8827c1b2fc05b5da034cc200ccc53f819ff3f416c5096bf6d6f66a8/typer-0.17.0-py3-none-any.whl.metadata
#7 9.071   Downloading typer-0.17.0-py3-none-any.whl.metadata (15 kB)
#7 9.076 WARNING: typer 0.17.0 does not provide the extra 'all'
#7 9.078   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/2d/76/06dbe78f39b2203d2a47d5facc5df5102d0561e2807396471b5f7c5a30a1/typer-0.16.1-py3-none-any.whl.metadata
#7 9.082   Downloading typer-0.16.1-py3-none-any.whl.metadata (15 kB)
#7 9.087 WARNING: typer 0.16.1 does not provide the extra 'all'
#7 9.088   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/76/42/3efaf858001d2c2913de7f354563e3a3a2f0decae3efe98427125a8f441e/typer-0.16.0-py3-none-any.whl.metadata
#7 9.092   Downloading typer-0.16.0-py3-none-any.whl.metadata (15 kB)
#7 9.097 WARNING: typer 0.16.0 does not provide the extra 'all'
#7 9.099 INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.
#7 9.099   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/c9/62/d4ba7afe2096d5659ec3db8b15d8665bdcb92a3c6ff0b95e99895b335a9c/typer-0.15.4-py3-none-any.whl.metadata
#7 9.104   Downloading typer-0.15.4-py3-none-any.whl.metadata (15 kB)
#7 9.109 WARNING: typer 0.15.4 does not provide the extra 'all'
#7 9.111   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/48/20/9d953de6f4367163d23ec823200eb3ecb0050a2609691e512c8b95827a9b/typer-0.15.3-py3-none-any.whl.metadata
#7 9.115   Downloading typer-0.15.3-py3-none-any.whl.metadata (15 kB)
#7 9.120 WARNING: typer 0.15.3 does not provide the extra 'all'
#7 9.121   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/7f/fc/5b29fea8cee020515ca82cc68e3b8e1e34bb19a3535ad854cac9257b414c/typer-0.15.2-py3-none-any.whl.metadata
#7 9.128   Downloading typer-0.15.2-py3-none-any.whl.metadata (15 kB)
#7 9.133 WARNING: typer 0.15.2 does not provide the extra 'all'
#7 9.134   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/d0/cc/0a838ba5ca64dc832aa43f727bd586309846b0ffb2ce52422543e6075e8a/typer-0.15.1-py3-none-any.whl.metadata
#7 9.138   Downloading typer-0.15.1-py3-none-any.whl.metadata (15 kB)
#7 9.143 WARNING: typer 0.15.1 does not provide the extra 'all'
#7 9.145   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/e9/88/9ba31984811331d55bd384c603cdad189b3503c6c8e66366064f10983f3f/typer-0.15.0-py3-none-any.whl.metadata
#7 9.149   Downloading typer-0.15.0-py3-none-any.whl.metadata (15 kB)
#7 9.153 WARNING: typer 0.15.0 does not provide the extra 'all'
#7 9.155   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/bb/d8/a3ab71d5587b42b832a7ef2e65b3e51a18f8da32b6ce169637d4d21995ed/typer-0.14.0-py3-none-any.whl.metadata
#7 9.159   Downloading typer-0.14.0-py3-none-any.whl.metadata (15 kB)
#7 9.164 WARNING: typer 0.14.0 does not provide the extra 'all'
#7 9.165   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/22/69/e90a0b4d0c16e095901679216c8ecdc728110c7c54e7b5f43a623bc4c789/typer-0.13.1-py3-none-any.whl.metadata
#7 9.170   Downloading typer-0.13.1-py3-none-any.whl.metadata (15 kB)
#7 9.176 WARNING: typer 0.13.1 does not provide the extra 'all'
#7 9.178   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/18/7e/c8bfa8cbcd3ea1d25d2beb359b5c5a3f4339a7e2e5d9e3ef3e29ba3ab3b9/typer-0.13.0-py3-none-any.whl.metadata
#7 9.183   Downloading typer-0.13.0-py3-none-any.whl.metadata (15 kB)
#7 9.188 WARNING: typer 0.13.0 does not provide the extra 'all'
#7 9.189   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/a8/2b/886d13e742e514f704c33c4caa7df0f3b89e5a25ef8db02aa9ca3d9535d5/typer-0.12.5-py3-none-any.whl.metadata
#7 9.194   Downloading typer-0.12.5-py3-none-any.whl.metadata (15 kB)
#7 9.198 WARNING: typer 0.12.5 does not provide the extra 'all'
#7 9.200   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/ae/cc/15083dcde1252a663398b1b2a173637a3ec65adadfb95137dc95df1e6adc/typer-0.12.4-py3-none-any.whl.metadata
#7 9.205   Downloading typer-0.12.4-py3-none-any.whl.metadata (15 kB)
#7 9.210 WARNING: typer 0.12.4 does not provide the extra 'all'
#7 9.212   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/20/b5/11cf2e34fbb11b937e006286ab5b8cfd334fde1c8fa4dd7f491226931180/typer-0.12.3-py3-none-any.whl.metadata
#7 9.216   Downloading typer-0.12.3-py3-none-any.whl.metadata (15 kB)
#7 9.220 WARNING: typer 0.12.3 does not provide the extra 'all'
#7 9.222   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/08/2e/54923a9c4416a1ca23dcd5c023b6ad5e20dfa31366ed3bd894dee7741859/typer-0.12.2-py3-none-any.whl.metadata
#7 9.227   Downloading typer-0.12.2-py3-none-any.whl.metadata (15 kB)
#7 9.232 WARNING: typer 0.12.2 does not provide the extra 'all'
#7 9.233   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/45/12/0111044f478fb35338f1372e397327d3dac7b35d4cc0e1cca1d3e2be6f20/typer-0.12.1-py3-none-any.whl.metadata
#7 9.238   Downloading typer-0.12.1-py3-none-any.whl.metadata (15 kB)
#7 9.242 WARNING: typer 0.12.1 does not provide the extra 'all'
#7 9.244   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/d8/21/6a9c5c3363e30345346f59d236fd416730c2ac7802abe3609fed89d46ac1/typer-0.12.0-py3-none-any.whl.metadata
#7 9.249   Downloading typer-0.12.0-py3-none-any.whl.metadata (15 kB)
#7 9.253 WARNING: typer 0.12.0 does not provide the extra 'all'
#7 9.255   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/cc/14/6c702faa2b1105a8d74ae3f5c6045d4fb88e85bb9dd219f4d8ec10a479d4/typer-0.11.1-py3-none-any.whl.metadata
#7 9.260   Downloading typer-0.11.1-py3-none-any.whl.metadata (13 kB)
#7 9.269   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/ed/55/c47933592c0bb9f4355e1b31c5f15088c0b3c8a93ebdf3f0e0347decea77/typer-0.11.0-py3-none-any.whl.metadata
#7 9.273   Downloading typer-0.11.0-py3-none-any.whl.metadata (13 kB)
#7 9.280   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/d9/07/8100c125307a26f03c305764f22cd995ae1878071ddf1df3588add73b53c/typer-0.10.0-py3-none-any.whl.metadata
#7 9.284   Downloading typer-0.10.0-py3-none-any.whl.metadata (14 kB)
#7 9.302   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/62/39/82c9d3e10979851847361d922a373bdfef4091020da7f893acfaf07c0225/typer-0.9.4-py3-none-any.whl.metadata
#7 9.307   Downloading typer-0.9.4-py3-none-any.whl.metadata (14 kB)
#7 9.325   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/82/e9/eeae6b93f120d7a74147456f6eac95cce43cce121fb28af05e5014f4ca78/typer-0.9.3-py3-none-any.whl.metadata
#7 9.329   Downloading typer-0.9.3-py3-none-any.whl.metadata (14 kB)
#7 9.348   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/26/58/3178f8086929015ad3fdc9e39989bcc87efec90b33daed1bd10230a4dfaa/typer-0.9.2-py3-none-any.whl.metadata
#7 9.352   Downloading typer-0.9.2-py3-none-any.whl.metadata (14 kB)
#7 9.370   Obtaining dependency information for typer[all]>=0.4.1 from https://files.pythonhosted.org/packages/7a/27/208876e4a9e9e3c2a6c8af883d13edb6a1a738825c736d6f56157abb6151/typer-0.9.1-py3-none-any.whl.metadata
#7 9.374   Downloading typer-0.9.1-py3-none-any.whl.metadata (14 kB)
#7 9.439 Downloading sphinx-7.1.2-py3-none-any.whl (3.2 MB)
#7 9.468    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 118.5 MB/s eta 0:00:00
#7 9.472 Downloading sphinx_autobuild-2021.3.14-py3-none-any.whl (9.9 kB)
#7 9.478 Downloading semver-3.0.1-py3-none-any.whl (17 kB)
#7 9.483 Downloading myst_parser-2.0.0-py3-none-any.whl (77 kB)
#7 9.487    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 77.2/77.2 kB 34.9 MB/s eta 0:00:00
#7 9.491 Downloading sphinx_tabs-3.4.1-py3-none-any.whl (10.0 kB)
#7 9.497 Downloading sphinx_version_warning-1.1.2-py3-none-any.whl (13 kB)
#7 9.502 Downloading sphinxcontrib_googleanalytics-0.4-py3-none-any.whl (3.4 kB)
#7 9.508 Downloading sphinxcontrib_openapi-0.8.1-py3-none-any.whl (35 kB)
#7 9.514 Downloading sphinxcontrib_spelling-8.0.0-py3-none-any.whl (16 kB)
#7 9.519 Downloading sphinxcontrib_websupport-1.2.4-py2.py3-none-any.whl (39 kB)
#7 9.525 Downloading sphinxext_rediraffe-0.2.7-py3-none-any.whl (8.3 kB)
#7 9.530 Downloading rstcheck-6.2.0-py3-none-any.whl (8.3 kB)
#7 9.535 Downloading yamllint-1.32.0-py3-none-any.whl (65 kB)
#7 9.538    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.4/65.4 kB 29.1 MB/s eta 0:00:00
#7 9.542 Downloading alabaster-0.7.13-py3-none-any.whl (13 kB)
#7 9.546 Downloading annotated_types-0.5.0-py3-none-any.whl (11 kB)
#7 9.551 Downloading attrs-23.1.0-py3-none-any.whl (61 kB)
#7 9.554    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 29.5 MB/s eta 0:00:00
#7 9.559 Downloading Babel-2.12.1-py3-none-any.whl (10.1 MB)
#7 9.629    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.1/10.1 MB 146.5 MB/s eta 0:00:00
#7 9.633 Downloading certifi-2024.7.4-py3-none-any.whl (162 kB)
#7 9.637    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.0/163.0 kB 59.3 MB/s eta 0:00:00
#7 9.642 Downloading charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (193 kB)
#7 9.651    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 193.3/193.3 kB 59.1 MB/s eta 0:00:00
#7 9.655 Downloading click-8.1.7-py3-none-any.whl (97 kB)
#7 9.659    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 97.9/97.9 kB 39.1 MB/s eta 0:00:00
#7 9.662 Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
#7 9.667 Downloading deepmerge-1.1.0-py3-none-any.whl (8.5 kB)
#7 9.672 Downloading docutils-0.18.1-py2.py3-none-any.whl (570 kB)
#7 9.679    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 570.0/570.0 kB 99.5 MB/s eta 0:00:00
#7 9.683 Downloading idna-3.7-py3-none-any.whl (66 kB)
#7 9.686    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.8/66.8 kB 30.0 MB/s eta 0:00:00
#7 9.690 Downloading imagesize-1.4.1-py2.py3-none-any.whl (8.8 kB)
#7 9.694 Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
#7 9.699    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 134.9/134.9 kB 53.0 MB/s eta 0:00:00
#7 9.703 Downloading jsonschema-4.19.0-py3-none-any.whl (83 kB)
#7 9.707    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.4/83.4 kB 37.2 MB/s eta 0:00:00
#7 9.711 Downloading jsonschema_specifications-2023.7.1-py3-none-any.whl (17 kB)
#7 9.716 Downloading livereload-2.6.3-py2.py3-none-any.whl (24 kB)
#7 9.721 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
#7 9.724    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.5/87.5 kB 39.9 MB/s eta 0:00:00
#7 9.729 Downloading MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl (33 kB)
#7 9.734 Downloading mdit_py_plugins-0.4.0-py3-none-any.whl (54 kB)
#7 9.737    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.1/54.1 kB 26.9 MB/s eta 0:00:00
#7 9.741 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)
#7 9.745 Downloading mistune-2.0.5-py2.py3-none-any.whl (24 kB)
#7 9.750 Downloading packaging-23.1-py3-none-any.whl (48 kB)
#7 9.753    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.9/48.9 kB 24.7 MB/s eta 0:00:00
#7 9.757 Downloading pathspec-0.11.2-py3-none-any.whl (29 kB)
#7 9.762 Downloading picobox-3.0.0-py3-none-any.whl (11 kB)
#7 9.767 Downloading pydantic-2.7.1-py3-none-any.whl (409 kB)
#7 9.773    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 409.3/409.3 kB 92.6 MB/s eta 0:00:00
#7 9.778 Downloading pydantic_core-2.18.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB)
#7 9.797    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 129.3 MB/s eta 0:00:00
#7 9.802 Downloading pyenchant-3.2.2-py3-none-any.whl (55 kB)
#7 9.805    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.7/55.7 kB 25.9 MB/s eta 0:00:00
#7 9.810 Downloading Pygments-2.16.1-py3-none-any.whl (1.2 MB)
#7 9.821    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 117.6 MB/s eta 0:00:00
#7 9.826 Downloading PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (748 kB)
#7 9.835    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 748.5/748.5 kB 107.8 MB/s eta 0:00:00
#7 9.838 Downloading referencing-0.30.2-py3-none-any.whl (25 kB)
#7 9.843 Downloading requests-2.32.4-py3-none-any.whl (64 kB)
#7 9.846    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.8/64.8 kB 30.8 MB/s eta 0:00:00
#7 9.851 Downloading rich-13.5.2-py3-none-any.whl (239 kB)
#7 9.857    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 239.7/239.7 kB 71.2 MB/s eta 0:00:00
#7 9.861 Downloading rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB)
#7 9.876    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 113.4 MB/s eta 0:00:00
#7 9.881 Downloading rstcheck_core-1.1.1-py3-none-any.whl (27 kB)
#7 9.886 Downloading shellingham-1.5.3-py2.py3-none-any.whl (9.7 kB)
#7 9.891 Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
#7 9.896 Downloading snowballstemmer-2.2.0-py2.py3-none-any.whl (93 kB)
#7 9.899    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 93.0/93.0 kB 40.9 MB/s eta 0:00:00
#7 9.904 Downloading sphinx_mdinclude-0.5.3-py3-none-any.whl (18 kB)
#7 9.909 Downloading sphinxcontrib_applehelp-1.0.4-py3-none-any.whl (120 kB)
#7 9.913    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 120.6/120.6 kB 48.0 MB/s eta 0:00:00
#7 9.917 Downloading sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl (84 kB)
#7 9.921    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 84.7/84.7 kB 38.9 MB/s eta 0:00:00
#7 9.924 Downloading sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl (99 kB)
#7 9.928    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 99.8/99.8 kB 43.6 MB/s eta 0:00:00
#7 9.932 Downloading sphinxcontrib_httpdomain-1.8.1-py2.py3-none-any.whl (25 kB)
#7 9.937 Downloading sphinxcontrib_jquery-4.1-py2.py3-none-any.whl (121 kB)
#7 9.941    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.1/121.1 kB 48.3 MB/s eta 0:00:00
#7 9.944 Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl (5.1 kB)
#7 9.949 Downloading sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl (90 kB)
#7 9.952    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 90.6/90.6 kB 39.8 MB/s eta 0:00:00
#7 9.956 Downloading sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl (94 kB)
#7 9.960    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 94.0/94.0 kB 43.6 MB/s eta 0:00:00
#7 9.964 Downloading tornado-6.5-cp39-abi3-musllinux_1_2_x86_64.whl (442 kB)
#7 9.971    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 442.6/442.6 kB 82.8 MB/s eta 0:00:00
#7 9.976 Downloading typer-0.9.0-py3-none-any.whl (45 kB)
#7 9.979    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.9/45.9 kB 22.2 MB/s eta 0:00:00
#7 9.983 Downloading typing_extensions-4.7.1-py3-none-any.whl (33 kB)
#7 9.988 Downloading urllib3-2.5.0-py3-none-any.whl (129 kB)
#7 9.992    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 129.8/129.8 kB 48.2 MB/s eta 0:00:00
#7 10.09 Building wheels for collected packages: sphinx-rtd-theme-cilium
#7 10.10   Building wheel for sphinx-rtd-theme-cilium (setup.py): started
#7 10.76   Building wheel for sphinx-rtd-theme-cilium (setup.py): finished with status 'done'
#7 10.76   Created wheel for sphinx-rtd-theme-cilium: filename=sphinx_rtd_theme_cilium-2.99.0-py2.py3-none-any.whl size=2931157 sha256=459059efca4529a6b8ac06c04ff45c2943bb9af5895a6ee86fc66c87a9f1bccd
#7 10.76   Stored in directory: /root/.cache/pip/wheels/20/c9/3f/31c25ae33432a561590a73d6d045a9c9b1dde8ffb32891fd2d
#7 10.77 Successfully built sphinx-rtd-theme-cilium
#7 11.04 Installing collected packages: snowballstemmer, mistune, deepmerge, urllib3, typing_extensions, tornado, sphinxcontrib-serializinghtml, sphinxcontrib-qthelp, sphinxcontrib-jsmath, sphinxcontrib-htmlhelp, sphinxcontrib-devhelp, sphinxcontrib-applehelp, six, shellingham, semver, rpds-py, PyYAML, Pygments, pyenchant, picobox, pathspec, packaging, mdurl, MarkupSafe, imagesize, idna, docutils, colorama, click, charset-normalizer, certifi, Babel, attrs, annotated-types, alabaster, yamllint, typer, sphinxcontrib-websupport, sphinx_mdinclude, requests, referencing, pydantic_core, markdown-it-py, livereload, Jinja2, Sphinx, rich, pydantic, mdit-py-plugins, jsonschema-specifications, sphinxext-rediraffe, sphinxcontrib-spelling, sphinxcontrib-jquery, sphinxcontrib-httpdomain, sphinxcontrib-googleanalytics, sphinx-version-warning, sphinx-tabs, sphinx-autobuild, rstcheck-core, myst-parser, jsonschema, sphinxcontrib-openapi, sphinx-rtd-theme-cilium, rstcheck
#7 16.51 Successfully installed Babel-2.12.1 Jinja2-3.1.6 MarkupSafe-2.1.3 PyYAML-6.0.1 Pygments-2.16.1 Sphinx-7.1.2 alabaster-0.7.13 annotated-types-0.5.0 attrs-23.1.0 certifi-2024.7.4 charset-normalizer-3.2.0 click-8.1.7 colorama-0.4.6 deepmerge-1.1.0 docutils-0.18.1 idna-3.7 imagesize-1.4.1 jsonschema-4.19.0 jsonschema-specifications-2023.7.1 livereload-2.6.3 markdown-it-py-3.0.0 mdit-py-plugins-0.4.0 mdurl-0.1.2 mistune-2.0.5 myst-parser-2.0.0 packaging-23.1 pathspec-0.11.2 picobox-3.0.0 pydantic-2.7.1 pydantic_core-2.18.2 pyenchant-3.2.2 referencing-0.30.2 requests-2.32.4 rich-13.5.2 rpds-py-0.10.3 rstcheck-6.2.0 rstcheck-core-1.1.1 semver-3.0.1 shellingham-1.5.3 six-1.16.0 snowballstemmer-2.2.0 sphinx-autobuild-2021.3.14 sphinx-rtd-theme-cilium-2.99.0 sphinx-tabs-3.4.1 sphinx-version-warning-1.1.2 sphinx_mdinclude-0.5.3 sphinxcontrib-applehelp-1.0.4 sphinxcontrib-devhelp-1.0.2 sphinxcontrib-googleanalytics-0.4 sphinxcontrib-htmlhelp-2.0.1 sphinxcontrib-httpdomain-1.8.1 sphinxcontrib-jquery-4.1 sphinxcontrib-jsmath-1.0.1 sph

@cilium-renovate cilium-renovate bot force-pushed the renovate/main-all-go-deps-main branch from c139a13 to 0fe2358 Compare November 26, 2025 15:24
@aanm aanm force-pushed the renovate/main-all-go-deps-main branch from 0fe2358 to b7b48c6 Compare December 3, 2025 11:37
@aanm aanm temporarily deployed to release-base-images-renovate December 3, 2025 11:37 — with GitHub Actions Inactive
@aanm aanm temporarily deployed to Trigger CI from renovate PRs December 3, 2025 11:51 — with GitHub Actions Inactive
@ciliumbot
Copy link
Copy Markdown

/test

Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>
@aanm aanm force-pushed the renovate/main-all-go-deps-main branch from b7b48c6 to 846a05f Compare December 3, 2025 12:58
@aanm aanm temporarily deployed to Trigger CI from renovate PRs December 3, 2025 13:16 — with GitHub Actions Inactive
@ciliumbot
Copy link
Copy Markdown

/test

@aanm aanm added this pull request to the merge queue Dec 3, 2025
@maintainer-s-little-helper maintainer-s-little-helper bot added the ready-to-merge This PR has passed all tests and received consensus from code owners to merge. label Dec 3, 2025
Merged via the queue into main with commit 7e33e00 Dec 3, 2025
341 of 342 checks passed
@aanm aanm deleted the renovate/main-all-go-deps-main branch December 3, 2025 14:03
@cilium-release-bot cilium-release-bot bot moved this to Released in cilium v1.19.0 Feb 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

kind/community-contribution This was a contribution made by a community member. kind/enhancement This would improve or streamline existing functionality. ready-to-merge This PR has passed all tests and received consensus from code owners to merge. release-note/misc This PR makes changes that have no direct user impact. renovate/stop-updating Tell Renovate to stop updating PR

Projects

No open projects
Status: Released

Development

Successfully merging this pull request may close these issues.

8 participants