diff --git a/Project.toml b/Project.toml index 4c153938..bb9da447 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "AugmentedGPLikelihoods" uuid = "4689c64d-1a23-4d3c-ad26-1c612d54a282" authors = ["Théo Galy-Fajou and contributors"] -version = "0.4.10" +version = "0.4.11" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" @@ -25,8 +25,8 @@ Distributions = "0.25" GPLikelihoods = "0.3, 0.4" IrrationalConstants = "0.1" LogExpFunctions = "0.3" -MeasureBase = "0.6" -MeasureTheory = "0.14" +MeasureBase = "0.6, 0.7" +MeasureTheory = "0.14, 0.15" Reexport = "1" SpecialFunctions = "1, 2" TupleVectors = "0.1" diff --git a/test/Project.toml b/test/Project.toml index b01ad56b..d26bbb9b 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -13,7 +13,7 @@ TupleVectors = "615932cf-77b6-4358-adcd-5b7eba981d7e" Distributions = "0.25" GPLikelihoods = "0.3, 0.4" LogExpFunctions = "0.3" -MeasureBase = "0.6" +MeasureBase = "0.6, 0.7" SpecialFunctions = "2" StatsFuns = "0.9" TupleVectors = "0.1" diff --git a/test/SpecialDistributions/polyagamma.jl b/test/SpecialDistributions/polyagamma.jl index 8e870e70..e32bf2e5 100644 --- a/test/SpecialDistributions/polyagamma.jl +++ b/test/SpecialDistributions/polyagamma.jl @@ -9,8 +9,8 @@ end p = PolyaGamma(1, 0) - @test insupport(p, 0) - @test !insupport(p, -1) + @test Distributions.insupport(p, 0) + @test !Distributions.insupport(p, -1) @test minimum(p) === 0 @test maximum(p) == Inf @test Distributions.params(p) == (1, 0)