Skip to content

Commit 96e9a76

Browse files
committed
Add compat for Aqua and stdlibs
TaylorSeries.jl did not specify a compat for Aqua. Aqua 0.8 introduces some breaking changes, such as renaming test_piracy to test_piracies, leading to broken test if one has a recent version of Aqua in their environment. I added a compat for Aqua. New versions of Aqua also check for compats for standard libraries (which will be a requirement to publish the package), so I added those as well.
1 parent ff1f680 commit 96e9a76

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1010
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1111

1212
[compat]
13+
Aqua = "0.8"
1314
IntervalArithmetic = "0.15, 0.16, 0.17, 0.18, 0.19, 0.20"
15+
LinearAlgebra = "<0.0.1, 1"
16+
Markdown = "<0.0.1, 1"
1417
Requires = "0.5.2, 1"
18+
SparseArrays = "<0.0.1, 1"
19+
Test = "<0.0.1, 1"
1520
julia = "1"
1621

1722
[extensions]

test/aqua.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end
2424
Aqua.test_undefined_exports(TaylorSeries)
2525
Aqua.test_deps_compat(TaylorSeries)
2626
Aqua.test_stale_deps(TaylorSeries; ignore=[:Requires])
27-
Aqua.test_piracy(TaylorSeries)
27+
Aqua.test_piracies(TaylorSeries)
2828
end
2929

3030
nothing

0 commit comments

Comments
 (0)