Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/codecov/codecov-ac…
Browse files Browse the repository at this point in the history
…tion-4
  • Loading branch information
devmotion committed Feb 4, 2024
2 parents 3b845c1 + 3048ebc commit 49f57b8
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 15 deletions.
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,20 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Tulip = "6dd1b50a-3aae-11e9-10b5-ef983d2400fa"

[compat]
Aqua = "0.6.5"
Aqua = "0.8"
DataStructures = "0.17, 0.18"
Distances = "0.10.1"
Distributions = "0.23, 0.24, 0.25"
ExactOptimalTransport = "0.1, 0.2"
KernelFunctions = "0.10"
LinearAlgebra = "<0.0.1, 1"
PDMats = "0.10, 0.11"
Random = "<0.0.1, 1"
Reexport = "0.2, 1.0"
SimpleUnPack = "1"
Statistics = "<0.0.1, 1"
StatsBase = "0.32, 0.33, 0.34"
Test = "<0.0.1, 1"
Tulip = "0.7.5, 0.8, 0.9"
julia = "1.3"

Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"

[compat]
CalibrationErrors = "0.6"
Documenter = "0.27"
Documenter = "1"
Literate = "2.12.1"
julia = "1.5"
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ makedocs(;
return joinpath("examples", basename(x), "index.md")
end,
],
strict=true,
checkdocs=:exports,
)

Expand Down
2 changes: 1 addition & 1 deletion docs/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ target with absolute certainty) or caused by insufficient knowledge of the
underlying relation between feature and target (e.g., if only a small number
of observations of features and corresponding targets are available).[^1]

In the [classification example](../examples/classification) we study the
In the [classification example](@ref "Classification of penguin species") we study the
[Palmer penguins dataset](https://github.com/allisonhorst/palmerpenguins) with
measurements of three different penguin species and consider the task of predicting
the probability of a penguin species (*target*) given the bill and flipper length
Expand Down
4 changes: 2 additions & 2 deletions examples/classification/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ PalmerPenguins = "8b842266-38fa-440a-9b57-31493939ab85"

[compat]
AlgebraOfGraphics = "0.6"
CairoMakie = "0.8, 0.9, 0.10"
CairoMakie = "0.8, 0.9, 0.10, 0.11"
CalibrationErrors = "0.6"
DataFrames = "1"
Distributions = "0.25"
MLJ = "0.17, 0.18, 0.19"
MLJ = "0.17, 0.18, 0.19, 0.20"
MLJNaiveBayesInterface = "0.1.5"
PalmerPenguins = "0.1.2"
julia = "1.3"
2 changes: 1 addition & 1 deletion examples/distribution/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
CairoMakie = "0.8, 0.9, 0.10"
CairoMakie = "0.8, 0.9, 0.10, 0.11"
CalibrationErrors = "0.6"
Distributions = "0.25"
StatsBase = "0.33, 0.34"
Expand Down
10 changes: 2 additions & 8 deletions test/aqua.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
@testset "Aqua" begin
# Test ambiguities separately without Base and Core
# Ref: https://github.com/JuliaTesting/Aqua.jl/issues/77
# Only test Project.toml formatting on Julia > 1.6 when running Github action
# Ref: https://github.com/JuliaTesting/Aqua.jl/issues/105
Aqua.test_all(
CalibrationErrors;
ambiguities=false,
project_toml_formatting=VERSION >= v"1.7" || !haskey(ENV, "GITHUB_ACTIONS"),
)
Aqua.test_ambiguities([CalibrationErrors])
Aqua.test_all(CalibrationErrors; ambiguities=false)
Aqua.test_ambiguities(CalibrationErrors)
end

0 comments on commit 49f57b8

Please sign in to comment.