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 8 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
3 changes: 1 addition & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ MarkdownAST = "d0879d2d-cac2-40c8-9cee-1863dc0c7391"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
MultiObjectiveAlgorithms = "0327d340-17cd-11ea-3e99-2fd5d98cecda"
PATHSolver = "f5f7c340-0bb3-5c69-969a-41884d311d1b"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13"
Expand All @@ -40,7 +39,7 @@ Clarabel = "=0.5.1"
DataFrames = "1"
DimensionalData = "0.24"
Distributions = "0.25"
Documenter = "0.27.9, 0.28"
Documenter = "1"
odow marked this conversation as resolved.
Show resolved Hide resolved
Dualization = "0.5"
GLPK = "=1.1.2"
HTTP = "1.5.4"
Expand Down
17 changes: 13 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
# 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
Expand Down Expand Up @@ -548,7 +545,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