Skip to content

Commit 554b1fe

Browse files
authored
Import deps transitively in extension (#174)
* Import deps transitively in extension * Bump version to v0.12.8 * compat for LinearAlgebra and SparseArrays
1 parent b999d9b commit 554b1fe

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BlockBandedMatrices"
22
uuid = "ffab5731-97b5-5995-9138-79e8c1846df0"
3-
version = "0.12.7"
3+
version = "0.12.8"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -23,7 +23,9 @@ ArrayLayouts = "1"
2323
BandedMatrices = "0.17.2, 1"
2424
BlockArrays = "0.16.34"
2525
FillArrays = "1"
26+
LinearAlgebra = "1.6"
2627
MatrixFactorizations = "1, 2"
28+
SparseArrays = "1.6"
2729
julia = "1.6"
2830

2931
[extras]

ext/BlockBandedMatricesSparseArraysExt.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
module BlockBandedMatricesSparseArraysExt
22

33
using BlockBandedMatrices
4-
using BandedMatrices
5-
using BandedMatrices: _banded_rowval, _banded_colval, _banded_nzval
6-
using BlockArrays: blockaxes, blockcolsupport
4+
# Specifying the full namespace is necessary because of https://github.com/JuliaLang/julia/issues/48533
5+
# See https://github.com/JuliaStats/LogExpFunctions.jl/pull/63
6+
using BlockBandedMatrices.BandedMatrices: _banded_rowval, _banded_colval, _banded_nzval
7+
using BlockBandedMatrices.BlockArrays: blockaxes, blockcolsupport
78
import SparseArrays: sparse
89

910
function sparse(A::BandedBlockBandedMatrix)

0 commit comments

Comments
 (0)