Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
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"
]
simsurace marked this conversation as resolved.
Show resolved Hide resolved
simsurace marked this conversation as resolved.
Show resolved Hide resolved
),
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
Loading