Skip to content

Commit

Permalink
Use Aqua v0.8 and add compat bounds for all deps (#1235)
Browse files Browse the repository at this point in the history
* Use Aqua v8 and add compat bounds for all deps

* Limit stdlibs compat to julia lower bound
  • Loading branch information
jishnub authored Jan 25, 2024
1 parent 9e9ea02 commit af6f457
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,20 @@ StaticArraysChainRulesCoreExt = "ChainRulesCore"
StaticArraysStatisticsExt = "Statistics"

[compat]
Aqua = "0.7"
Aqua = "0.8"
BenchmarkTools = "1"
ChainRulesCore = "1"
ChainRulesTestUtils = "1"
InteractiveUtils = "1"
JLArrays = "0.1"
LinearAlgebra = "1.6"
OffsetArrays = "1"
PrecompileTools = "1"
Random = "1.6"
StaticArraysCore = "~1.4.0"
Statistics = "1.6"
Test = "1.6"
Unitful = "1"
julia = "1.6"

[extras]
Expand Down
8 changes: 4 additions & 4 deletions test/aqua.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if VERSION v"1.7-"
Aqua.test_all(StaticArrays, piracy=false)
Aqua.test_piracy(StaticArrays, treat_as_own=[
Aqua.test_all(StaticArrays, piracies=false)
Aqua.test_piracies(StaticArrays, treat_as_own=[
StaticArray
Size
SArray
Expand All @@ -16,8 +16,8 @@ if VERSION ≥ v"1.7-"
broken=true)

elseif VERSION v"1.6-"
Aqua.test_all(StaticArrays, piracy=false, ambiguities=false, project_toml_formatting=false)
Aqua.test_piracy(StaticArrays, treat_as_own=[
Aqua.test_all(StaticArrays, piracies=false, ambiguities=false)
Aqua.test_piracies(StaticArrays, treat_as_own=[
StaticArray
Size
SArray
Expand Down

0 comments on commit af6f457

Please sign in to comment.