Skip to content

Commit 7b76237

Browse files
authored
Replace deprecated elementwise_loglikelihoods with pointwise_loglikelihoods (#1438)
1 parent 6dca57e commit 7b76237

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Turing"
22
uuid = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
3-
version = "0.14.8"
3+
version = "0.14.9"
44

55
[deps]
66
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
@@ -39,7 +39,7 @@ Bijectors = "0.8"
3939
Distributions = "0.23.3"
4040
DistributionsAD = "0.6"
4141
DocStringExtensions = "0.8"
42-
DynamicPPL = "0.9.2"
42+
DynamicPPL = "0.9.5"
4343
EllipticalSliceSampling = "0.2, 0.3"
4444
ForwardDiff = "0.10.3"
4545
Libtask = "0.4"

src/Turing.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ end
7575
# Exports #
7676
###########
7777
# `using` statements for stuff to re-export
78-
using DynamicPPL: elementwise_loglikelihoods, generated_quantities, logprior, logjoint
78+
using DynamicPPL: pointwise_loglikelihoods, elementwise_loglikelihoods,
79+
generated_quantities, logprior, logjoint
7980
using StatsBase: predict
8081

8182
# Turing essentials - modelling macros and inference algorithms
@@ -130,6 +131,7 @@ export @model, # modelling
130131
arraydist,
131132

132133
predict,
134+
pointwise_loglikelihoods,
133135
elementwise_loglikelihoods,
134136
genereated_quantities,
135137
logprior,

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ CmdStan = "6.0.8"
3333
Distributions = "0.23.8"
3434
DistributionsAD = "0.6.3"
3535
DynamicHMC = "2.1.6"
36-
DynamicPPL = "0.9"
36+
DynamicPPL = "0.9.5"
3737
FiniteDifferences = "0.10.8, 0.11"
3838
ForwardDiff = "0.10.12"
3939
MCMCChains = "4.0.4"

0 commit comments

Comments
 (0)