Skip to content

Commit 4c95579

Browse files
authored
Package maintenance (#223)
1 parent 0f6980d commit 4c95579

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,7 @@ LinearMapsStatisticsExt = "Statistics"
2020

2121
[compat]
2222
ChainRulesCore = "1"
23+
LinearAlgebra = "1.6"
24+
SparseArrays = "1.6"
2325
Statistics = "1.6"
2426
julia = "1.6"

docs/src/types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ facesplitting
149149

150150
```@docs
151151
Base.:*(::LinearMap,::AbstractVector)
152-
Base.:*(::LinearMap,::AbstractMatrix)
153-
Base.:*(::AbstractMatrix,::LinearMap)
152+
Base.:*(::LinearMap,::Union{LinearAlgebra.AbstractQ, AbstractMatrix})
153+
Base.:*(::Union{LinearAlgebra.AbstractQ, AbstractMatrix},::LinearMap)
154154
LinearAlgebra.mul!(::AbstractVecOrMat,::LinearMap,::AbstractVector)
155155
LinearAlgebra.mul!(::AbstractVecOrMat,::LinearMap,::AbstractVector,::Number,::Number)
156156
LinearAlgebra.mul!(::AbstractMatrix,::AbstractMatrix,::LinearMap)

test/Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1414
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1515

1616
[compat]
17-
Aqua = "0.5, 0.6, 0.7"
17+
Aqua = "0.8"
1818
BlockArrays = "0.16"
1919
ChainRulesCore = "1"
2020
ChainRulesTestUtils = "1.9"
2121
Documenter = "1"
22+
InteractiveUtils = "1.6"
23+
IterativeSolvers = "0.9"
24+
LinearAlgebra = "1.6"
2225
Octonions = "0.1, 0.2"
2326
Quaternions = "0.5, 0.6, 0.7"
27+
SparseArrays = "1.6"
28+
Statistics = "1.6"
2429
julia = "1.6"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Test, Documenter, LinearMaps, Aqua
22

33
@testset "code quality" begin
4-
Aqua.test_all(LinearMaps, project_toml_formatting = VERSIONv"1.7", piracy = (broken=true,))
4+
Aqua.test_all(LinearMaps, piracies = (broken=true,))
55
end
66

77
doctest(LinearMaps)

0 commit comments

Comments
 (0)