Skip to content

Commit af6f457

Browse files
authored
Use Aqua v0.8 and add compat bounds for all deps (#1235)
* Use Aqua v8 and add compat bounds for all deps * Limit stdlibs compat to julia lower bound
1 parent 9e9ea02 commit af6f457

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

Project.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,20 @@ StaticArraysChainRulesCoreExt = "ChainRulesCore"
1818
StaticArraysStatisticsExt = "Statistics"
1919

2020
[compat]
21-
Aqua = "0.7"
21+
Aqua = "0.8"
22+
BenchmarkTools = "1"
2223
ChainRulesCore = "1"
24+
ChainRulesTestUtils = "1"
25+
InteractiveUtils = "1"
26+
JLArrays = "0.1"
27+
LinearAlgebra = "1.6"
28+
OffsetArrays = "1"
2329
PrecompileTools = "1"
30+
Random = "1.6"
2431
StaticArraysCore = "~1.4.0"
32+
Statistics = "1.6"
33+
Test = "1.6"
34+
Unitful = "1"
2535
julia = "1.6"
2636

2737
[extras]

test/aqua.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if VERSION v"1.7-"
2-
Aqua.test_all(StaticArrays, piracy=false)
3-
Aqua.test_piracy(StaticArrays, treat_as_own=[
2+
Aqua.test_all(StaticArrays, piracies=false)
3+
Aqua.test_piracies(StaticArrays, treat_as_own=[
44
StaticArray
55
Size
66
SArray
@@ -16,8 +16,8 @@ if VERSION ≥ v"1.7-"
1616
broken=true)
1717

1818
elseif VERSION v"1.6-"
19-
Aqua.test_all(StaticArrays, piracy=false, ambiguities=false, project_toml_formatting=false)
20-
Aqua.test_piracy(StaticArrays, treat_as_own=[
19+
Aqua.test_all(StaticArrays, piracies=false, ambiguities=false)
20+
Aqua.test_piracies(StaticArrays, treat_as_own=[
2121
StaticArray
2222
Size
2323
SArray

0 commit comments

Comments
 (0)