Skip to content

Commit bc653c9

Browse files
ci(dependabot): ignore torch/transformers for diffusers to fix Jetson-index auth failure (#10913)
The weekly "Dependabot Updates" pip job for /backend/python/diffusers has been failing with `private_source_authentication_failure` against the Jetson pip index (https://pypi.jetson-ai-lab.io/jp6/cu129/), referenced by that backend's requirements-l4t12.txt. diffusers is the only dependabot-configured pip directory that pulls from that private index, so it is the only update job that fails; the other backends update cleanly. torch and transformers are deliberately pinned in this backend for reproducibility (see backend/python/diffusers/requirements-*.txt and #9979), so we do not want dependabot bumping them anyway. Ignoring both dependencies for this directory stops dependabot from resolving them against the unreachable Jetson index and keeps the weekly update job green, without removing update coverage for the rest of the backend's dependencies. Assisted-by: Claude:opus-4.8 [Claude Code] Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
1 parent f9a2d9b commit bc653c9

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ updates:
4545
directory: "/backend/python/diffusers"
4646
schedule:
4747
interval: "weekly"
48+
# torch and transformers are deliberately pinned in this backend (see
49+
# backend/python/diffusers/requirements-*.txt and issue #9979), and the
50+
# l4t12 variant resolves them from the Jetson pip index
51+
# (https://pypi.jetson-ai-lab.io/jp6/cu129/). dependabot cannot authenticate
52+
# against that index and fails the whole weekly update with a
53+
# private_source_authentication_failure. Ignore the two pinned deps we don't
54+
# want bumped anyway so the job stays green.
55+
ignore:
56+
- dependency-name: "torch"
57+
- dependency-name: "transformers"
4858
- package-ecosystem: "pip"
4959
directory: "/backend/python/exllama"
5060
schedule:

0 commit comments

Comments
 (0)