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

Update Makie compat bounds #56

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Try to fix docs
simsurace committed Mar 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 56c565a7f9fbeeccea487eba99d50617c19f6736
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -8,5 +8,5 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
AbstractGPs = "0.3, 0.4, 0.5"
AbstractGPsMakie = "0.2"
CairoMakie = "0.6, 0.7, 0.8, 0.9, 0.10"
Documenter = "0.27"
Documenter = "1"
julia = "1.3"
13 changes: 7 additions & 6 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -8,21 +8,22 @@ end
using AbstractGPsMakie

DocMeta.setdocmeta!(
AbstractGPsMakie, :DocTestSetup, :(using AbstractGPsMakie); recursive=true
AbstractGPsMakie,
:DocTestSetup,
:(using AbstractGPsMakie);
recursive=true
Comment on lines +11 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
AbstractGPsMakie,
:DocTestSetup,
:(using AbstractGPsMakie);
recursive=true
AbstractGPsMakie, :DocTestSetup, :(using AbstractGPsMakie); recursive=true

)

makedocs(;
modules=[AbstractGPsMakie],
authors="David Widmann",
repo="https://github.com/JuliaGaussianProcesses/AbstractGPsMakie.jl/blob/{commit}{path}#{line}",
sitename="AbstractGPsMakie.jl",
authors="David Widmann",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliagaussianprocesses.github.io/AbstractGPsMakie.jl",
assets=String[],
),
Comment on lines 20 to 23
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliagaussianprocesses.github.io/AbstractGPsMakie.jl",
assets=String[],
),
format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", assets=String[]),

modules=[AbstractGPsMakie],
pages=["Home" => "index.md", "api.md"],
#strict=true,
warnonly=true,
checkdocs=:exports,
)