Skip to content

Commit a6106de

Browse files
thisroddlfivefifty
authored andcommitted
Update manual for refactoring into subpackages (#667)
* Include docstrings from ApproxFun submodules in manual * fix some Documenter warnings and deprecations
1 parent 4756e7a commit a6106de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using Documenter, ApproxFun, BandedMatrices, LinearAlgebra
1+
using Documenter, ApproxFun, BandedMatrices, DomainSets, LinearAlgebra
22

3-
makedocs(modules=[ApproxFun],
3+
makedocs(
44
doctest = false,
55
clean = true,
6-
format = :html,
6+
format = Documenter.HTML(),
77
sitename = "ApproxFun.jl",
88
authors = "Sheehan Olver",
99
pages = Any[
@@ -23,7 +23,7 @@ makedocs(modules=[ApproxFun],
2323

2424
deploydocs(
2525
repo = "github.com/JuliaApproximation/ApproxFun.jl.git",
26-
latest = "development",
26+
devbranch = "development",
2727
julia = "0.7",
2828
osname = "linux",
2929
target = "build",

docs/travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
if [ ${TRAVIS_OS_NAME} = "linux" ]; then
44
julia -e 'using Pkg; Pkg.add("Documenter")';
5-
julia -e 'using Pkg; cd(Pkg.dir("ApproxFun")); include(joinpath("docs", "make.jl"))';
5+
julia -e 'using ApproxFun; cd(joinpath(dirname(pathof(ApproxFun)), "..", "docs")); include("make.jl")';
66
fi

0 commit comments

Comments
 (0)