Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] update to Documenter@1.0.0 #3501

Merged
merged 10 commits into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Clarabel = "=0.5.1"
DataFrames = "1"
DimensionalData = "0.24"
Distributions = "0.25"
Documenter = "0.27.9, 0.28"
Documenter = "=1.0.0"
Dualization = "0.5"
GLPK = "=1.1.2"
HTTP = "1.5.4"
Expand Down
18 changes: 14 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

import Pkg
Pkg.pkg"add Documenter#2fabe9c3bd40b6288c3d86d96c6031728b2d92ad"

import Documenter
import Downloads
import Literate
import MathOptInterface
import Pkg
import Test
import TOML

Expand Down Expand Up @@ -548,7 +546,19 @@ write(joinpath(@__DIR__, "src", "JuMP.pdf"), "")
assets = ["assets/extra_styles.css"],
sidebar_sitename = false,
# Do no check for large pages.
size_threshold = nothing,
size_threshold_ignore = [
"changelog.md",
"release_notes.md",
"api/JuMP.md",
"tutorials/getting_started/getting_started_with_data_and_plotting.md",
"moi/changelog.md",
"moi/release_notes.md",
"moi/reference/models.md",
"moi/reference/standard_form.md",
"moi/submodules/Bridges/list_of_bridges.md",
"moi/submodules/Bridges/reference.md",
"moi/submodules/Utilities/reference.md",
],
),
modules = [JuMP, MOI],
checkdocs = :none,
Expand Down
Loading