Skip to content

Commit

Permalink
ci: add package as a dev dependency for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudh2 committed Jun 18, 2024
1 parent 45d3433 commit 94c6351
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
22 changes: 13 additions & 9 deletions docs/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,15 @@ version = "1.1.1"

[[deps.InlineStrings]]
deps = ["Parsers"]
git-tree-sha1 = "9cc2baf75c6d09f9da536ddf58eb2f29dedaf461"
git-tree-sha1 = "86356004f30f8e737eff143d57d41bd580e437aa"
uuid = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48"
version = "1.4.0"
version = "1.4.1"

[deps.InlineStrings.extensions]
ArrowTypesExt = "ArrowTypes"

[deps.InlineStrings.weakdeps]
ArrowTypes = "31f734f8-188a-4ce0-8406-c8a06bd891cd"

[[deps.InteractiveUtils]]
deps = ["Markdown"]
Expand Down Expand Up @@ -472,15 +478,15 @@ version = "1.4.3"

[[deps.Strided]]
deps = ["LinearAlgebra", "StridedViews", "TupleTools"]
git-tree-sha1 = "40c69be0e1b72ee2f42923b7d1ff13e0b04e675c"
git-tree-sha1 = "bd9bd1c70cfc115cc3a30213fc725125a6b43652"
uuid = "5e0ebb24-38b0-5f93-81fe-25c709ecae67"
version = "2.0.4"
version = "2.1.0"

[[deps.StridedViews]]
deps = ["LinearAlgebra", "PackageExtensionCompat"]
git-tree-sha1 = "5b765c4e401693ab08981989f74a36a010aa1d8e"
git-tree-sha1 = "7ba0fdd6a050bb7bb2069095e91bfd7268d9a45a"
uuid = "4db3bf67-4bd7-4b4e-b153-31dc3fb37143"
version = "0.2.2"
version = "0.3.0"

[deps.StridedViews.extensions]
StridedViewsCUDAExt = "CUDA"
Expand Down Expand Up @@ -528,9 +534,7 @@ uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[[deps.TheGraphData]]
deps = ["CSV", "GraphQLClient", "Mocking", "TensorCast", "TypedTables"]
git-tree-sha1 = "3c1cacde453ffbe15f466a1c082eef087147f288"
repo-rev = "main"
repo-url = ".."
path = ".."
uuid = "871720c8-5dfb-4fa2-998e-3fe6ebd08819"
version = "0.2.1"

Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ DocMeta.setdocmeta!(TheGraphData, :DocTestSetup, :(using TheGraphData); recursiv
makedocs(;
modules=[TheGraphData],
authors="Semiotic Labs, Inc.",
repo="https://github.com/semiotic-ai/TheGraphData.jl/blob/{commit}{path}#{line}",
sitename="TheGraphData.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
Expand All @@ -19,6 +18,7 @@ makedocs(;
"Querying Clients" => "querying.md",
"IO" => "io.md",
"Handling Data" => "data.md",
"API Reference" => "api.md",
],
)

Expand Down
5 changes: 5 additions & 0 deletions docs/src/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API Reference

```@autodocs
Modules = [TheGraphData]
```

0 comments on commit 94c6351

Please sign in to comment.