File tree Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1
1
using Documenter, CommonSolve
2
2
3
+ cp (" ./docs/Manifest.toml" , " ./docs/src/assets/Manifest.toml" , force = true )
4
+ cp (" ./docs/Project.toml" , " ./docs/src/assets/Project.toml" , force = true )
5
+
3
6
include (" pages.jl" )
4
7
5
8
makedocs (
Original file line number Diff line number Diff line change @@ -50,3 +50,58 @@ CommonSolve.solve!
50
50
- [ JuliaDiffEq] ( https://gitter.im/JuliaDiffEq/Lobby ) on Gitter
51
51
- On the Julia Discourse forums (look for the [ modelingtoolkit tag] ( https://discourse.julialang.org/tag/modelingtoolkit )
52
52
- See also [ SciML Community page] ( https://sciml.ai/community/ )
53
+
54
+ ## Reproducibility
55
+ ``` @raw html
56
+ <details><summary>The documentation of this SciML package was built using these direct dependencies,</summary>
57
+ ```
58
+ ``` @example
59
+ using Pkg # hide
60
+ Pkg.status() # hide
61
+ ```
62
+ ``` @raw html
63
+ </details>
64
+ ```
65
+ ``` @raw html
66
+ <details><summary>and using this machine and Julia version.</summary>
67
+ ```
68
+ ``` @example
69
+ using InteractiveUtils # hide
70
+ versioninfo() # hide
71
+ ```
72
+ ``` @raw html
73
+ </details>
74
+ ```
75
+ ``` @raw html
76
+ <details><summary>A more complete overview of all dependencies and their versions is also provided.</summary>
77
+ ```
78
+ ``` @example
79
+ using Pkg # hide
80
+ Pkg.status(;mode = PKGMODE_MANIFEST) # hide
81
+ ```
82
+ ``` @raw html
83
+ </details>
84
+ ```
85
+ ``` @raw html
86
+ You can also download the
87
+ <a href="
88
+ ```
89
+ ``` @eval
90
+ using TOML
91
+ version = TOML.parse(read("../../Project.toml",String))["version"]
92
+ name = TOML.parse(read("../../Project.toml",String))["name"]
93
+ link = "https://github.com/SciML/"*name*".jl/tree/gh-pages/v"*version*"/assets/Manifest.toml"
94
+ ```
95
+ ``` @raw html
96
+ ">manifest</a> file and the
97
+ <a href="
98
+ ```
99
+ ``` @eval
100
+ using TOML
101
+ version = TOML.parse(read("../../Project.toml",String))["version"]
102
+ name = TOML.parse(read("../../Project.toml",String))["name"]
103
+ link = "https://github.com/SciML/"*name*".jl/tree/gh-pages/v"*version*"/assets/Project.toml"
104
+ ```
105
+ ``` @raw html
106
+ ">project</a> file.
107
+ ```
You can’t perform that action at this time.
0 commit comments