From b3177ebc01b38a45d9483bdbe02559656768fcd8 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Tue, 3 Dec 2024 16:43:06 +0530 Subject: [PATCH 1/2] Set julia compat to v1.10 --- Project.toml | 11 +++++------ src/BlockBandedMatrices.jl | 4 ---- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/Project.toml b/Project.toml index 0feff49..87821fe 100644 --- a/Project.toml +++ b/Project.toml @@ -9,7 +9,6 @@ BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e" FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" MatrixFactorizations = "a3b82374-2e81-5b9e-98ce-41277c0e4c87" -SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [weakdeps] SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" @@ -24,12 +23,12 @@ BandedMatrices = "1" BlockArrays = "1" Documenter = "1" FillArrays = "1" -LinearAlgebra = "1.6" +LinearAlgebra = "1" MatrixFactorizations = "1, 2, 3" -Random = "1.6" -SparseArrays = "1.6" -Test = "1.6" -julia = "1.6" +Random = "1" +SparseArrays = "1" +Test = "1" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" diff --git a/src/BlockBandedMatrices.jl b/src/BlockBandedMatrices.jl index cc28134..c9f950e 100644 --- a/src/BlockBandedMatrices.jl +++ b/src/BlockBandedMatrices.jl @@ -58,8 +58,4 @@ include("interfaceimpl.jl") include("triblockbanded.jl") include("adjtransblockbanded.jl") -if !isdefined(Base, :get_extension) - include("../ext/BlockBandedMatricesSparseArraysExt.jl") -end - end # module From 646d4682198c398a8d42aeafbb0d09a203be938a Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Tue, 3 Dec 2024 16:43:56 +0530 Subject: [PATCH 2/2] Bump version to v0.13.3 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 87821fe..d39b7d9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "BlockBandedMatrices" uuid = "ffab5731-97b5-5995-9138-79e8c1846df0" -version = "0.13.2" +version = "0.13.3" [deps] ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"