From 87921085e74f138229cb5f284173cf1d92f034f4 Mon Sep 17 00:00:00 2001 From: Ron Wolf Date: Mon, 17 Aug 2020 11:13:24 -0400 Subject: [PATCH] Undeprecate quantile.() Needed by StatsBase.jl for arrays More info: https://github.com/JuliaStats/StatsBase.jl/pull/586#issuecomment-653936354 --- src/deprecates.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/deprecates.jl b/src/deprecates.jl index dc303951e..94ab3533e 100644 --- a/src/deprecates.jl +++ b/src/deprecates.jl @@ -24,11 +24,12 @@ end # vectorized versions +# N.B. quantile.() excluded; see #1150 for fun in [:pdf, :logpdf, :cdf, :logcdf, :ccdf, :logccdf, :invlogcdf, :invlogccdf, - :quantile, :cquantile] + :cquantile] _fun! = Symbol('_', fun, '!') fun! = Symbol(fun, '!')