Skip to content

Commit

Permalink
Add lower compat bounds for old Julia versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub committed Feb 9, 2024
1 parent 3549843 commit 8df784b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ LowRankMatricesFillArraysExt = "FillArrays"
[compat]
Aqua = "0.8"
FillArrays = "0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 1"
LinearAlgebra = "1"
Test = "1"
LinearAlgebra = "<0.0.1, 1"
Test = "<0.0.1, 1"
julia = "1"

[extras]
Expand Down
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ using Test
using LinearAlgebra
using FillArrays

include("aqua.jl")
if VERSION >= v"1.10"
include("aqua.jl")
end

@testset "Constructors" begin
@test Matrix(LowRankMatrix(Zeros(10,5))) == zeros(10,5)
Expand Down

0 comments on commit 8df784b

Please sign in to comment.