Skip to content

Commit 9a4c02f

Browse files
committed
remove Compat
1 parent 14a9876 commit 9a4c02f

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

REQUIRE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
julia 0.7
2-
Compat
32
StatsBase
43
Distributions
54
Optim

src/KernelDensity.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ VERSION < v"0.7" && __precompile__()
22

33
module KernelDensity
44

5-
using Compat
65
using StatsBase
76
using Distributions
87
using Optim

src/univariate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function kde_range(boundary::Tuple{Real,Real}, npoints::Int)
6666
lo, hi = boundary
6767
lo < hi || error("boundary (a,b) must have a < b")
6868

69-
Compat.range(lo, stop=hi, length=npoints)
69+
range(lo, stop=hi, length=npoints)
7070
end
7171

7272
struct UniformWeights{N} end

test/bivariate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Compat.Test
1+
using Test
22
using Distributions
33
using KernelDensity
44

test/interp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Compat.Test
1+
using Test
22
using KernelDensity
33

44
X = randn(100)

test/univariate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Compat.Test
1+
using Test
22
using Distributions
33
using KernelDensity
44

0 commit comments

Comments
 (0)