Skip to content

Commit aeee7a5

Browse files
committed
Julia v1.0 support
1 parent acdc2cc commit aeee7a5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ os:
66
julia:
77
- 0.6
88
- 0.7
9+
- 1.0
910
- nightly
11+
matrix:
12+
allow_failures:
13+
- julia: nightly
1014
notifications:
1115
email: false
1216
# uncomment the following lines to override the default test script

src/HierarchicalMatrices.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module HierarchicalMatrices
1010
import Base: copy, getindex, setindex!, show, one, zero, inv, isless
1111
import Base: div, rem
1212
import Base: broadcast, Matrix, promote_op
13-
import Base: +, -, *, /, \, .+, .-, .*, ./, .\, ==, !=
13+
import Base: +, -, *, /, \, ==, !=
1414
import Compat.LinearAlgebra: Factorization, rank, norm, cond, istriu, istril, issymmetric, ishermitian,
1515
transpose
1616
import Compat: adjoint

src/hierarchical.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ macro hierarchical(HierarchicalType, Types...)
1616
AbstractHierarchicalType = Meta.parse("Abstract"*string(HierarchicalType))
1717
Factorization = Meta.parse(string(HierarchicalType)*"Factorization")
1818
return esc(quote
19-
import Base: +, -, *, /, \, .+, .-, .*, ./, .\, ==
19+
import Base: +, -, *, /, \, ==
2020
import Base: size, getindex, setindex!
2121
import Compat: undef
2222
import Compat.LinearAlgebra: Factorization

0 commit comments

Comments
 (0)