Skip to content

Commit

Permalink
retry doc building
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Feb 5, 2024
1 parent 1863e85 commit e4932b4
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
using Documenter
using KrylovKit

makedocs(
modules = [KrylovKit],
sitename = "KrylovKit.jl",
authors = "Jutho Haegeman",
pages = [
"Home" => "index.md",
"Manual" => [
"man/intro.md",
"man/linear.md",
"man/eig.md",
"man/svd.md",
"man/matfun.md",
"man/algorithms.md",
"man/implementation.md",
],
],
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
)
makedocs(; modules=[KrylovKit],
sitename="KrylovKit.jl",
authors="Jutho Haegeman",
pages=["Home" => "index.md",
"Manual" => ["man/intro.md",
"man/linear.md",
"man/eig.md",
"man/svd.md",
"man/matfun.md",
"man/algorithms.md",
"man/implementation.md"]],
format=Documenter.HTML(; prettyurls=get(ENV, "CI", nothing) == "true"))

deploydocs(repo = "github.com/Jutho/KrylovKit.jl.git")
deploydocs(; repo="github.com/Jutho/KrylovKit.jl.git")

0 comments on commit e4932b4

Please sign in to comment.