From 0109d242d4a0833fc8d31c02d646e4ca6181c1a4 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 13 Dec 2025 01:25:13 +0000 Subject: [PATCH 1/3] CompatHelper: bump compat for Aqua in [extras] to 0.8, (keep existing compat) --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 2503597..aebe600 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "BoxCox" uuid = "1248164d-f7a6-4bdb-8e8d-8c4a187b3ce6" +version = "0.3.8" authors = ["Phillip Alday "] -version = "0.3.7" [deps] DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" @@ -30,7 +30,7 @@ BoxCoxMixedModelsExt = ["MixedModels", "Tables"] BoxCoxStatsModelsExt = ["StatsModels", "Tables"] [compat] -Aqua = "0.6" +Aqua = "0.6, 0.8" DocStringExtensions = "0.9" LinearAlgebra = "1" Makie = "0.19, 0.20, 0.21, 0.22, 0.23, 0.24" From 79033255e89c1b989541e0fc68af01445c1d23ee Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 16 Dec 2025 04:19:33 +0000 Subject: [PATCH 2/3] Update Julia version from 1.9 to 1.10 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index aebe600..1557341 100644 --- a/Project.toml +++ b/Project.toml @@ -47,7 +47,7 @@ StatsModels = "0.6, 0.7" Tables = "1" Test = "1" TestSetExtensions = "3" -julia = "1.9" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" From ee19b37ebbc93ca9333c540b6c5e2e57de18e5df Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Mon, 15 Dec 2025 22:37:41 -0600 Subject: [PATCH 3/3] compat --- Project.toml | 3 ++- test/runtests.jl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 1557341..edcef54 100644 --- a/Project.toml +++ b/Project.toml @@ -30,7 +30,8 @@ BoxCoxMixedModelsExt = ["MixedModels", "Tables"] BoxCoxStatsModelsExt = ["StatsModels", "Tables"] [compat] -Aqua = "0.6, 0.8" +Aqua = "0.8" +CairoMakie = "0.8 - 0.15" DocStringExtensions = "0.9" LinearAlgebra = "1" Makie = "0.19, 0.20, 0.21, 0.22, 0.23, 0.24" diff --git a/test/runtests.jl b/test/runtests.jl index 8fbfe00..25f324b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ include("setup_tests.jl") @testset ExtendedTestSet "Aqua" begin - Aqua.test_all(BoxCox; ambiguities=false, piracy=true) + Aqua.test_all(BoxCox; ambiguities=false, piracies=true) end @testset ExtendedTestSet "Box-Cox" include("boxcox.jl")