Skip to content

Commit ab2acaa

Browse files
committed
drop Julia v0.7, try fixing appveyor tests
1 parent d57ce4f commit ab2acaa

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ os:
44
- linux
55
- osx
66
julia:
7-
- "0.7"
87
- "1.0"
98
- "1.1"
9+
- "1.2"
1010
- nightly
1111
matrix:
1212
allow_failures:

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
environment:
22
matrix:
3-
- julia_version: 0.7
43
- julia_version: 1
54
- julia_version: 1.1
5+
- julia_version: 1.2
66
- julia_version: nightly
77

88
platform:

src/fastops.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ function BandedMatrix(V::SubOperator{T,ConcreteConversion{Ultraspherical{LT,DD,R
3838
V_l, V_u = bandwidths(V)
3939
ret = BandedMatrix{eltype(V)}(undef, (n,m), (V_l,V_u))
4040
kr,jr = parentindices(V)
41+
42+
(isempty(kr) || isempty(jr)) && return ret
43+
4144
dg = diagindshift(V)
4245

4346

0 commit comments

Comments
 (0)