You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
global documenter_version =VersionNumber(first(pm["Documenter"])["version"])
else
@warn("No Mainfest.toml found at `$(manifest)`. Defaulting to $(documenter_version).")
end
catch err
@error(exception = err)
end
generally leads to a KeyError("Documenter") because the new Manifest.toml format wraps all the packages in [deps.PackageName]. So we should probably do pm["deps"]["Documenter"] to extract the package (but probably also check manifest_format?).
The text was updated successfully, but these errors were encountered:
This part
DocumentationGenerator.jl/src/rundocumenter.jl
Lines 26 to 37 in 80b8c21
generally leads to a
KeyError("Documenter")
because the newManifest.toml
format wraps all the packages in[deps.PackageName]
. So we should probably dopm["deps"]["Documenter"]
to extract the package (but probably also checkmanifest_format
?).The text was updated successfully, but these errors were encountered: