From b965f0401015acf0789e1ee169d31b3df19c1424 Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Tue, 5 Sep 2023 12:06:10 +0200 Subject: [PATCH 1/4] Bump compat bound for Aqua.jl in tests --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index c3704248..0c247860 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -13,7 +13,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] -Aqua = "0.5, 0.6" +Aqua = "0.5, 0.6, 0.7" BlockArrays = "0.16" ChainRulesCore = "1" ChainRulesTestUtils = "1.9" From 37d2a9afb23f670c6224aadcafbcdcfc8aef5100 Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Tue, 5 Sep 2023 12:57:57 +0200 Subject: [PATCH 2/4] specify Aqua piracy tests --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index bde3fd94..28a43d47 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ using Test, LinearMaps, Aqua @testset "code quality" begin - Aqua.test_all(LinearMaps, project_toml_formatting=VERSION≥v"1.7") + Aqua.test_all(LinearMaps, project_toml_formatting = VERSION≥v"1.7", piracy = VERSION≥v"1.9") end include("linearmaps.jl") From 8c58bf41a8165097f489eece8e3b8ae1b5177005 Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Tue, 26 Sep 2023 16:52:03 +0200 Subject: [PATCH 3/4] mark piracy test as broken --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 28a43d47..c5f679ef 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ using Test, LinearMaps, Aqua @testset "code quality" begin - Aqua.test_all(LinearMaps, project_toml_formatting = VERSION≥v"1.7", piracy = VERSION≥v"1.9") + Aqua.test_all(LinearMaps, project_toml_formatting = VERSION≥v"1.7", piracy = (broken=true)) end include("linearmaps.jl") From e79e42bd01e35c7357d44ff01c4bcbca32b7cbf7 Mon Sep 17 00:00:00 2001 From: Daniel Karrasch Date: Tue, 26 Sep 2023 17:05:34 +0200 Subject: [PATCH 4/4] fixes --- Project.toml | 1 + test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e5047262..5fad45bf 100644 --- a/Project.toml +++ b/Project.toml @@ -20,4 +20,5 @@ LinearMapsStatisticsExt = "Statistics" [compat] ChainRulesCore = "1" +Statistics = "1.6" julia = "1.6" diff --git a/test/runtests.jl b/test/runtests.jl index c5f679ef..12de5824 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ using Test, LinearMaps, Aqua @testset "code quality" begin - Aqua.test_all(LinearMaps, project_toml_formatting = VERSION≥v"1.7", piracy = (broken=true)) + Aqua.test_all(LinearMaps, project_toml_formatting = VERSION≥v"1.7", piracy = (broken=true,)) end include("linearmaps.jl")