Skip to content

Commit 0e5347c

Browse files
CompatHelper: bump compat for "BlockArrays" to "0.13" (#48)
* CompatHelper: bump compat for "BlockArrays" to "0.13" * update tests for LazyArrays v0.19.3 * Update Project.toml Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Sheehan Olver <[email protected]>
1 parent 170c46e commit 0e5347c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunOrthogonalPolynomials"
22
uuid = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
3-
version = "0.3.6"
3+
version = "0.3.7"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -23,7 +23,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2323
AbstractFFTs = "0.5"
2424
ApproxFunBase = "0.3.6"
2525
BandedMatrices = "0.14, 0.15"
26-
BlockArrays = "0.12.11"
26+
BlockArrays = "0.12.11, 0.13"
2727
BlockBandedMatrices = "0.6, 0.7.1, 0.8, 0.9"
2828
DomainSets = "0.3, 0.4"
2929
FFTW = "1.1"
@@ -32,7 +32,7 @@ FastTransforms = "0.10"
3232
FillArrays = "0.8, 0.9.4, 0.10"
3333
IntervalSets = "0.5"
3434
Reexport = "0.2"
35-
SpecialFunctions = "0.8, 0.9, 0.10"
35+
SpecialFunctions = "0.8, 0.9, 0.10, 1.0"
3636
julia = "1.3"
3737

3838
[extras]

test/ODETest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ import ApproxFunBase: Multiplication, testraggedbelowoperator, testbandedoperato
228228

229229
A = [B; L]
230230
rs = rangespace(A)
231-
@test ApproxFunBase.blocklengths(rs) isa Vcat
231+
# @test ApproxFunBase.blocklengths(rs) isa Vcat
232232

233233
u = [B; L] \ [ [0.,0.], [1.,1.], zeros(6)..., exp(x)]
234234
@test u(0.5) -0.4024723414410859 # Empirical

test/OperatorTest.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ import ApproxFunOrthogonalPolynomials: JacobiZ
203203

204204
@testset "InterlaceOperator" begin
205205
A = InterlaceOperator(Diagonal([Matrix(I,2,2),Derivative(Chebyshev())]))
206-
206+
@test blockbandwidths(A) == (0,1)
207+
@test subblockbandwidths(A) == (2,2)
207208
@test A[Block(1):Block(2), Block(1):Block(2)] isa BlockBandedMatrix
208209
@test Matrix(view(A, Block(1), Block(1))) == A[1:3,1:3]
209210
@test Matrix(view(A, Block(1):Block(2), Block(1):Block(2))) == A[1:4,1:4]

0 commit comments

Comments
 (0)