Skip to content

Commit

Permalink
docs: invoke AbstractAlgebra.doctestsetup()
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Nov 17, 2024
1 parent 80d1172 commit b877a62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ jobs:
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
using Documenter
using Nemo
import Nemo: Nemo, AbstractAlgebra
DocMeta.setdocmeta!(Nemo, :DocTestSetup, :(using Nemo); recursive = true)
DocMeta.setdocmeta!(AbstractAlgebra, :DocTestSetup, AbstractAlgebra.doctestsetup(); recursive = true)
doctest(Nemo)'
- name: "Process code coverage"
uses: julia-actions/julia-processcoverage@v1
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RandomExtensions = "fb686558-2515-59ef-acaa-46db3789a887"
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"

[compat]
AbstractAlgebra = "0.43.9"
AbstractAlgebra = "0.43.10"
FLINT_jll = "^300.100.100"
Libdl = "1.6"
LinearAlgebra = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"

[compat]
Documenter = "1.0"
4 changes: 3 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Documenter, Nemo, AbstractAlgebra
using Documenter
import Nemo: Nemo, AbstractAlgebra

DocMeta.setdocmeta!(Nemo, :DocTestSetup, :(using Nemo); recursive = true)
DocMeta.setdocmeta!(AbstractAlgebra, :DocTestSetup, AbstractAlgebra.doctestsetup(); recursive = true)

makedocs(
format = Documenter.HTML(),
Expand Down

0 comments on commit b877a62

Please sign in to comment.