-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update package with latest version of Bestie Template (#62)
- Loading branch information
Showing
26 changed files
with
155 additions
and
63 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
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,12 +1,13 @@ | ||
# Changes here will be overwritten by Copier | ||
AnswerStrategy: recommended | ||
AuthorEmail: [email protected] | ||
AuthorName: Greg Neustroev | ||
Indentation: 2 | ||
JuliaMinVersion: '1.6' | ||
Authors: Greg Neustroev <[email protected]> and contributors | ||
CodeOfConductContact: G.Neustroev@tudelft.nl | ||
JuliaIndentation: 2 | ||
JuliaMinVersion: 1.10.5 | ||
License: Apache-2.0 | ||
LicenseCopyrightHolders: Greg Neustroev | ||
PackageName: TulipaClustering | ||
PackageOwner: TulipaEnergy | ||
PackageUUID: 314fac8b-c762-4aa3-9d12-851379729163 | ||
_commit: v0.7.0 | ||
_commit: v0.12.0 | ||
_src_path: https://github.com/JuliaBesties/BestieTemplate.jl |
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
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
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
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
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
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
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
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
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
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
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,14 @@ | ||
*.jl.*.cov | ||
*.jl.cov | ||
*.jl.mem | ||
*.rej | ||
.DS_Store | ||
.benchmarkci | ||
Manifest.toml | ||
benchmark/*.json | ||
coverage | ||
docs/build/ | ||
env | ||
/.benchmarkci | ||
/benchmark/*.json | ||
coverage/ | ||
*.rej | ||
node_modules | ||
.DS_Store | ||
debugging | ||
.vscode | ||
node_modules |
File renamed without changes.
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
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 |
---|---|---|
|
@@ -60,7 +60,7 @@ representative at an online or offline event. | |
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported to the community leaders responsible for enforcement at | ||
reported to the community leaders responsible for enforcement: | ||
`[email protected]`. | ||
All complaints will be reviewed and investigated promptly and fairly. | ||
|
||
|
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
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,37 +1,28 @@ | ||
using TulipaClustering | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(TulipaClustering, :DocTestSetup, :(using TulipaClustering); recursive = true) | ||
DocMeta.setdocmeta!( | ||
TulipaClustering, | ||
:DocTestSetup, | ||
:(using TulipaClustering); | ||
recursive = true, | ||
) | ||
|
||
const page_rename = Dict("developer.md" => "Developer docs") # Without the numbers | ||
|
||
function nice_name(file) | ||
file = replace(file, r"^[0-9]*-" => "") | ||
if haskey(page_rename, file) | ||
return page_rename[file] | ||
end | ||
return splitext(file)[1] |> x -> replace(x, "-" => " ") |> titlecase | ||
end | ||
const numbered_pages = [ | ||
file for file in readdir(joinpath(@__DIR__, "src")) if | ||
file != "index.md" && splitext(file)[2] == ".md" | ||
] | ||
|
||
makedocs(; | ||
modules = [TulipaClustering], | ||
doctest = true, | ||
linkcheck = false, # Rely on Lint.yml/lychee for the links | ||
authors = "Greg Neustroev <[email protected]> and contributors", | ||
repo = "https://github.com/TulipaEnergy/TulipaClustering.jl/blob/{commit}{path}#{line}", | ||
sitename = "TulipaClustering.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = true, | ||
canonical = "https://TulipaEnergy.github.io/TulipaClustering.jl", | ||
assets = ["assets/style.css"], | ||
), | ||
pages = [ | ||
"Home" => "index.md" | ||
[ | ||
nice_name(file) => file for | ||
file in readdir(joinpath(@__DIR__, "src")) if file != "index.md" && splitext(file)[2] == ".md" | ||
] | ||
], | ||
pages = ["index.md"; numbered_pages], | ||
) | ||
|
||
deploydocs(; repo = "github.com/TulipaEnergy/TulipaClustering.jl", push_preview = true) | ||
deploydocs(; repo = "github.com/TulipaEnergy/TulipaClustering.jl") |
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
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
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
Oops, something went wrong.