Skip to content

Commit

Permalink
Remove Distributions, add StatsBase (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpfiffer authored and yebai committed Nov 26, 2019
1 parent 65c1f4e commit 85d5145
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ desc = "A lightweight interface for common MCMC methods."
version = "0.1.0"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
ProgressMeter = "~1.2"
StatsBase = "~0.32"
julia = "~1"
2 changes: 1 addition & 1 deletion src/AbstractMCMC.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module AbstractMCMC

using Random, ProgressMeter
import Random: GLOBAL_RNG, AbstractRNG, seed!
import Distributions: sample
import StatsBase: sample

export AbstractSampler,
AbstractChains,
Expand Down

0 comments on commit 85d5145

Please sign in to comment.