We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db774a5 commit b1095a9Copy full SHA for b1095a9
docs/make.jl
@@ -1,15 +1,13 @@
1
using Documenter, BlockBandedMatrices
2
3
-makedocs(modules=[BlockBandedMatrices],
4
- doctest = true,
5
- clean = true,
6
- format = :html,
7
- sitename = "BlockBandedMatrices.jl",
8
- authors = "Sheehan Olver",
9
- pages = Any[
10
- "Home" => "index.md"
11
- ]
12
- )
+makedocs(
+ modules = [BlockBandedMatrices],
+ sitename = "BlockBandedMatrices.jl",
+ strict = VERSION.major == 1 && sizeof(Int) == 8, # only strict mode on 1.0 and Int64
+ pages = Any[
+ "Home" => "index.md"
+ ]
+)
13
14
15
deploydocs(
0 commit comments