Skip to content

Commit

Permalink
drop Julia v0.7, try fixing appveyor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Jul 21, 2019
1 parent d57ce4f commit ab2acaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ os:
- linux
- osx
julia:
- "0.7"
- "1.0"
- "1.1"
- "1.2"
- nightly
matrix:
allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
environment:
matrix:
- julia_version: 0.7
- julia_version: 1
- julia_version: 1.1
- julia_version: 1.2
- julia_version: nightly

platform:
Expand Down
3 changes: 3 additions & 0 deletions src/fastops.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ function BandedMatrix(V::SubOperator{T,ConcreteConversion{Ultraspherical{LT,DD,R
V_l, V_u = bandwidths(V)
ret = BandedMatrix{eltype(V)}(undef, (n,m), (V_l,V_u))
kr,jr = parentindices(V)

(isempty(kr) || isempty(jr)) && return ret

dg = diagindshift(V)


Expand Down

2 comments on commit ab2acaa

@dlfivefifty
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/2183

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" ab2acaae91005155252f3092b2b758b42925a54e
git push origin v0.2.0

Please sign in to comment.