Skip to content

Commit b673c1d

Browse files
authored
Fix documenter build (#231)
1 parent 3aa78c6 commit b673c1d

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

docs/Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
[deps]
2+
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
23
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
4+
5+
[compat]
6+
Documenter = "1"

docs/make.jl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
using Documenter
22
using ArrayLayouts
33

4+
DocMeta.setdocmeta!(ArrayLayouts, :DocTestSetup, :(using ArrayLayouts); recursive=true)
5+
46
makedocs(
57
sitename = "ArrayLayouts",
6-
format = Documenter.HTML(),
7-
modules = [ArrayLayouts]
8+
modules = [ArrayLayouts],
9+
warnonly = :missing_docs,
810
)
911

1012
# Documenter can also automatically deploy documentation to gh-pages.
1113
# See "Hosting Documentation" and deploydocs() in the Documenter manual
1214
# for more information.
13-
#=deploydocs(
14-
repo = "<repository url>"
15-
)=#
15+
deploydocs(
16+
repo = "github.com/JuliaLinearAlgebra/ArrayLayouts.jl.git",
17+
)

0 commit comments

Comments
 (0)