From 5777bebd3494f274d5fd7814c7534421fbd00cff Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 5 Mar 2026 11:46:52 +0100 Subject: [PATCH 1/5] CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat) --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 264509c96..9d3c64fb9 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -8,7 +8,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [compat] Distances = "0.10" -Documenter = "0.27" +Documenter = "0.27, 1" KernelFunctions = "0.10" Kronecker = "0.4, 0.5" PDMats = "0.11" From b942ee54a99be1a1790a0193a9a5ef42034f1d66 Mon Sep 17 00:00:00 2001 From: theogf Date: Thu, 5 Mar 2026 11:46:52 +0100 Subject: [PATCH 2/5] Remove strict argument --- docs/make.jl | 1 - test/Project.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 2b9ca74e4..28adc266f 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -37,7 +37,6 @@ makedocs(; "Design" => "design.md", "Examples" => JuliaGPsDocs.find_generated_examples(KernelFunctions), ], - strict=true, checkdocs=:exports, doctestfilters=JuliaGPsDocs.DOCTEST_FILTERS, ) diff --git a/test/Project.toml b/test/Project.toml index a12372998..d560ec4e8 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -25,7 +25,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" AxisArrays = "0.4.3" Compat = "3, 4" Distances = "0.10" -Documenter = "0.25, 0.26, 0.27" +Documenter = "0.25, 0.26, 0.27, 1" FiniteDifferences = "0.10.8, 0.11, 0.12" ForwardDiff = "0.10" Functors = "0.2, 0.3, 0.4, 0.5" From 8ac051cecf89d1ffe98e6dd39c244b4bc44a9946 Mon Sep 17 00:00:00 2001 From: Simone Carlo Surace <51025924+simsurace@users.noreply.github.com> Date: Thu, 5 Mar 2026 11:46:52 +0100 Subject: [PATCH 3/5] Drop old compat Co-authored-by: David Widmann --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 9d3c64fb9..f915ec6e2 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -8,7 +8,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [compat] Distances = "0.10" -Documenter = "0.27, 1" +Documenter = "1" KernelFunctions = "0.10" Kronecker = "0.4, 0.5" PDMats = "0.11" From 8f2c10ba4f705f1253056519c26b8c199d6edf4e Mon Sep 17 00:00:00 2001 From: Simone Carlo Surace Date: Thu, 5 Mar 2026 11:46:52 +0100 Subject: [PATCH 4/5] Increase size thresholds --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 28adc266f..947200612 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -24,7 +24,7 @@ DocMeta.setdocmeta!( makedocs(; sitename="KernelFunctions.jl", - format=Documenter.HTML(), + format=Documenter.HTML(size_threshold=10^6, size_threshold_warn=10^6), modules=[KernelFunctions], pages=[ "Home" => "index.md", From 1cc6b9ce01755113e0cb0292dd753589d779ca8c Mon Sep 17 00:00:00 2001 From: Simone Carlo Surace <51025924+simsurace@users.noreply.github.com> Date: Thu, 5 Mar 2026 15:26:26 +0100 Subject: [PATCH 5/5] Fix formatting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 947200612..927ffd55f 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -24,7 +24,7 @@ DocMeta.setdocmeta!( makedocs(; sitename="KernelFunctions.jl", - format=Documenter.HTML(size_threshold=10^6, size_threshold_warn=10^6), + format=Documenter.HTML(; size_threshold=10^6, size_threshold_warn=10^6), modules=[KernelFunctions], pages=[ "Home" => "index.md",