Skip to content

Commit

Permalink
Work without stdlib SparseArrays.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
inkydragon committed Feb 6, 2024
1 parent 68869af commit b63f738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Statistics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ quantile(v::AbstractVector, p; sorted::Bool=false, alpha::Real=1.0, beta::Real=a
quantile!(sorted ? v : Base.copymutable(v), p; sorted=sorted, alpha=alpha, beta=beta)

# If package extensions are not supported in this Julia version
if !isdefined(Base, :get_extension)
if !isdefined(Base, :get_extension) && Base.USE_GPL_LIBS
include("../ext/SparseArraysExt.jl")
end

Expand Down

0 comments on commit b63f738

Please sign in to comment.