Skip to content

Commit

Permalink
CompatHelper: bump compat for Documenter to 1 for package docs, (keep…
Browse files Browse the repository at this point in the history
… existing compat) (#377)

* CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat)

* Recover `strict=false` behavior with `warnonly=true`

* Remove old compat

* Ingnore size threshold for offending examples

* Correct typo

* Change paths

* Improve formatting

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: CompatHelper Julia <[email protected]>
Co-authored-by: Simone Carlo Surace <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 20, 2023
1 parent e70aef3 commit 9423e43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
AbstractGPs = "0.4, 0.5"
Documenter = "0.27"
Documenter = "1"
10 changes: 8 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,21 @@ DocMeta.setdocmeta!(

makedocs(;
sitename="AbstractGPs.jl",
format=Documenter.HTML(),
format=Documenter.HTML(;
size_threshold_ignore=[
"examples/0-intro-1d/index.md",
"examples/1-mauna-loa/index.md",
"examples/2-deep-kernel-learning/index.md",
],
),
modules=[AbstractGPs],
pages=[
"Home" => "index.md",
"The Main APIs" => "api.md",
"Concrete Features" => "concrete_features.md",
"Examples" => JuliaGPsDocs.find_generated_examples(AbstractGPs),
],
#strict=true,
warnonly=true,
checkdocs=:exports,
doctestfilters=JuliaGPsDocs.DOCTEST_FILTERS,
)
Expand Down

0 comments on commit 9423e43

Please sign in to comment.