From 12e3b54a58264141f1625392c4f37949107857bf Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 19 Jun 2026 04:31:34 -0400 Subject: [PATCH] docs CI: add KLU.jl and ForwardDiff.jl to linkcheck_ignore The Documentation build on master terminated with a [:linkcheck] error because GitHub rate-limited the CI runner's IP, returning HTTP 429 for https://github.com/JuliaSparse/KLU.jl and https://github.com/JuliaDiff/ForwardDiff.jl. Both URLs are valid (200 on a normal request); the 429 is transient GitHub anti-abuse throttling, not a broken link. This mirrors the existing convention in this file (e.g. FiniteDiff.jl / LinearSolve.jl added in #842) of ignoring GitHub links that get throttled during linkcheck. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/make.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/make.jl b/docs/make.jl index d028f1869..af8b2ad16 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -176,6 +176,8 @@ makedocs( "https://www.sciencedirect.com/science/article/pii/S0096300304009683", "https://github.com/JuliaDiff/FiniteDiff.jl", "https://github.com/SciML/LinearSolve.jl", + "https://github.com/JuliaSparse/KLU.jl", + "https://github.com/JuliaDiff/ForwardDiff.jl", "https://www.mathworks.com/help/matlab/math/nonnegative-ode-solution.html", ], doctest = false, clean = true,