Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 9e7ccfd

Browse files
committed
Fixing the docs
1 parent 9f02b20 commit 9e7ccfd

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ os:
33
- osx
44
- linux
55
julia:
6-
# - release
6+
- 0.5
77
- nightly
88
git:
99
depth: 999999

docs/make.jl

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@ using Documenter, ODE
22

33
makedocs(
44
format = Documenter.Formats.HTML,
5-
sitename = "ODE",
5+
modules = [ODE],
6+
clean = false,
7+
sitename = "ODE.jl",
68
pages = [
79
"Home" => "index.md",
810

9-
"Manual" => [ "Basics" => "man/basics.md",
10-
"Base" => "man/base.md" ]
11+
"Manual" => [
12+
"Basics" => "man/basics.md",
13+
"Base" => "man/base.md"
14+
]
1115
]
1216

1317
)
1418

1519
deploydocs(
1620
repo = "github.com/JuliaODE/ODE.jl.git",
17-
deps = Deps.pip("pygments", "python-markdown-math")
21+
target = "build",
22+
julia = "0.5",
23+
deps = nothing,
24+
make = nothing
1825
)

0 commit comments

Comments
 (0)