Skip to content

Commit 0e6a009

Browse files
committed
Bump version to v1.10.2
1 parent 7d22a1e commit 0e6a009

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ArrayLayouts"
22
uuid = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "1.10.1"
4+
version = "1.10.2"
55

66
[deps]
77
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"

test/test_layoutarray.jl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -147,16 +147,7 @@ Base.copy(A::MyVector) = MyVector(copy(A.A))
147147

148148
@testset "ldiv!" begin
149149
c = MyVector(randn(5))
150-
# if VERSION < v"1.9"
151-
# @test_broken ldiv!(lu(A), MyVector(copy(c))) ≈ A \ c
152-
# else
153150
@test ldiv!(lu(A), MyVector(copy(c))) A \ c
154-
# end
155-
# if VERSION < v"1.9" || VERSION >= v"1.10-"
156-
# @test_throws ErrorException ldiv!(qr(A), MyVector(copy(c)))
157-
# else
158-
# @test_throws MethodError ldiv!(qr(A), MyVector(copy(c)))
159-
# end
160151
@test_throws ErrorException ldiv!(eigen(randn(5,5)), c)
161152
@test ArrayLayouts.ldiv!(svd(A.A), Vector(c)) ArrayLayouts.ldiv!(similar(c), svd(A.A), c) A \ c
162153
if VERSION v"1.8"

0 commit comments

Comments
 (0)