Skip to content

Commit 490e448

Browse files
committed
Fix remotes configuration by disabling remote source links
The previous remotes configuration had incorrect syntax (Module => Remote instead of path => Remote). Since OrdinaryDiffEq and StochasticDiffEq are developed via Pkg.develop(), the simplest solution is to disable remote source links entirely by setting remotes = nothing. This prevents the MissingRemoteError while allowing the documentation to build successfully. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent d3d1d15 commit 490e448

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

docs/make.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ makedocs(
9898
DiffEqCallbacks,
9999
Sundials, DASKR
100100
],
101-
remotes = Dict(
102-
OrdinaryDiffEq => Documenter.Remotes.GitHub("SciML", "OrdinaryDiffEq.jl"),
103-
StochasticDiffEq => Documenter.Remotes.GitHub("SciML", "StochasticDiffEq.jl")
104-
),
101+
remotes = nothing,
105102
linkcheck = true,
106103
linkcheck_ignore = ["https://www.izhikevich.org/publications/spikes.htm",
107104
"https://biojulia.net/post/hardware/",

0 commit comments

Comments
 (0)