Skip to content

Commit

Permalink
CompatHelper: bump compat for MeasureTheory to 0.15, (keep existing c…
Browse files Browse the repository at this point in the history
…ompat) (#81)

* CompatHelper: bump compat for MeasureTheory to 0.15, (keep existing compat)

* Update Project.toml

* Update polyagamma.jl

* Update Project.toml

Co-authored-by: CompatHelper Julia <[email protected]>
Co-authored-by: Théo Galy-Fajou <[email protected]>
  • Loading branch information
3 people authored Apr 18, 2022
1 parent 44feae4 commit b18e42b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AugmentedGPLikelihoods"
uuid = "4689c64d-1a23-4d3c-ad26-1c612d54a282"
authors = ["Théo Galy-Fajou <[email protected]> and contributors"]
version = "0.4.10"
version = "0.4.11"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions test/SpecialDistributions/polyagamma.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

2 comments on commit b18e42b

@theogf
Copy link
Member

@theogf theogf commented on b18e42b Apr 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/58675

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.11 -m "<description of version>" b18e42baeed6908b89456bca610e864dc8c06bd2
git push origin v0.4.11

Please sign in to comment.