Skip to content

Commit 0690818

Browse files
authored
Set julia compat to v1.10 (#249)
Since v1.10 is the LTS now, we may focus development only on v1.10+. Versions of this package <v1.11 would continue to be compatible with julia v1.6.
1 parent 8c49e3c commit 0690818

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

Project.toml

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

66
[deps]
77
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
109

1110
[weakdeps]
1211
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
@@ -18,14 +17,14 @@ ArrayLayoutsSparseArraysExt = "SparseArrays"
1817
Aqua = "0.8"
1918
FillArrays = "1.2.1"
2019
Infinities = "0.1"
21-
LinearAlgebra = "1.6"
20+
LinearAlgebra = "1"
2221
Quaternions = "0.7"
23-
Random = "1.6"
24-
SparseArrays = "1.6"
22+
Random = "1"
23+
SparseArrays = "1"
2524
StableRNGs = "1"
2625
StaticArrays = "1"
27-
Test = "1.6"
28-
julia = "1.6"
26+
Test = "1"
27+
julia = "1.10"
2928

3029
[extras]
3130
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

src/ArrayLayouts.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,4 @@ Base.typed_hcat(::Type{T}, A::LayoutVecOrMats, B::LayoutVecOrMats, C::AbstractVe
425425
Base.typed_vcat(::Type{T}, A::AbstractVecOrMat, B::LayoutVecOrMats, C::AbstractVecOrMat...) where T = typed_vcat(T, A, B, C...)
426426
Base.typed_hcat(::Type{T}, A::AbstractVecOrMat, B::LayoutVecOrMats, C::AbstractVecOrMat...) where T = typed_hcat(T, A, B, C...)
427427

428-
if !isdefined(Base, :get_extension)
429-
include("../ext/ArrayLayoutsSparseArraysExt.jl")
430-
end
431-
432428
end # module

0 commit comments

Comments
 (0)