From cd580c42c400f3af384739100c3391d21ba6eb67 Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Tue, 27 Jun 2017 14:33:57 +0200 Subject: [PATCH] Fix deploying Documenter manual The HTML backend needs these two options, else we need to provide a docs/mkdocs.yml file. --- docs/make.jl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 0cb93b14a..21b7f4893 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -3,7 +3,6 @@ using Documenter, StatsBase makedocs( format = :html, sitename = "StatsBase.jl", - # options modules = [StatsBase], pages = ["index.md", "weights.md", @@ -18,10 +17,12 @@ makedocs( "empirical.md", "signalcorr.md", "misc.md", - "statmodels.md"] + "statmodels.md"] ) deploydocs( repo = "github.com/JuliaStats/StatsBase.jl.git", - julia = "0.6" + julia = "0.6", + deps = nothing, + make = nothing )