Skip to content

Commit

Permalink
CompatHelper: bump compat for Documenter to 1 for package docs, (keep…
Browse files Browse the repository at this point in the history
… existing compat) (#20)

* CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat)

* Address breaking changes

* Fix compat entries

---------

Co-authored-by: CompatHelper Julia <compathelper_noreply@julialang.org>
Co-authored-by: David Widmann <devmotion@users.noreply.github.com>
  • Loading branch information
3 people committed Feb 1, 2024
1 parent 44c0017 commit 8f52451
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/Docs.yml
Expand Up @@ -27,3 +27,4 @@ jobs:
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JULIA_DEBUG: Documenter
7 changes: 7 additions & 0 deletions Project.toml
Expand Up @@ -8,7 +8,14 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
Aqua = "0.8"
Distributions = "0.25"
Documenter = "1"
LinearAlgebra = "<0.0.1, 1"
Random = "<0.0.1, 1"
StatsBase = "0.32, 0.33, 0.34"
StructArrays = "0.6"
Test = "<0.0.1, 1"
julia = "1.6"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Expand Up @@ -7,6 +7,6 @@ StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
[compat]
ConsistencyResampling = "0.3"
Distributions = "0.25"
Documenter = "0.27"
Documenter = "1"
StructArrays = "0.5, 0.6"
julia = "1.6"
7 changes: 0 additions & 7 deletions docs/make.jl
@@ -1,10 +1,4 @@
using Documenter

# Print `@debug` statements (https://github.com/JuliaDocs/Documenter.jl/issues/955)
if haskey(ENV, "GITHUB_ACTIONS")
ENV["JULIA_DEBUG"] = "Documenter"
end

using ConsistencyResampling

DocMeta.setdocmeta!(
Expand All @@ -22,7 +16,6 @@ makedocs(;
assets=String[],
),
pages=["Home" => "index.md", "supported.md"],
strict=true,
checkdocs=:exports,
)

Expand Down
2 changes: 1 addition & 1 deletion test/aqua.jl
Expand Up @@ -2,5 +2,5 @@
# Test ambiguities separately without Base and Core
# Ref: https://github.com/JuliaTesting/Aqua.jl/issues/77
Aqua.test_all(ConsistencyResampling; ambiguities=false)
Aqua.test_ambiguities([ConsistencyResampling])
Aqua.test_ambiguities(ConsistencyResampling)
end

0 comments on commit 8f52451

Please sign in to comment.