-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Documenter version for doc building (#339)
Co-authored-by: Sukera <[email protected]>
- Loading branch information
1 parent
7a00040
commit 95131f8
Showing
5 changed files
with
21 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Manifest.toml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[deps] | ||
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" | ||
|
||
[compat] | ||
Documenter = "~0.26.1" | ||
Documenter = "1.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
using Documenter, SQLite | ||
import Pkg | ||
|
||
cd(@__DIR__) | ||
Pkg.activate(@__DIR__) | ||
Pkg.develop(path="..") | ||
Pkg.instantiate() | ||
|
||
using Documenter, SQLite, DBInterface | ||
|
||
DocMeta.setdocmeta!(SQLite, :DocTestSetup, :(using SQLite, DBInterface); recursive=true) | ||
|
||
makedocs(; | ||
modules = [SQLite], | ||
format = Documenter.HTML(), | ||
format = Documenter.HTML( | ||
prettyurls = get(ENV, "CI", nothing) == true, | ||
), | ||
pages = ["Home" => "index.md"], | ||
repo = "https://github.com/JuliaDatabases/SQLite.jl/blob/{commit}{path}#L{line}", | ||
repo = Remotes.GitHub("JuliaDatabases", "SQLite.jl"), | ||
sitename = "SQLite.jl", | ||
authors = "Jacob Quinn", | ||
assets = String[], | ||
) | ||
|
||
deploydocs(; repo = "github.com/JuliaDatabases/SQLite.jl") | ||
deploydocs( | ||
repo = "https://www.github.com/JuliaDatabases/SQLite.jl.git", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters