Skip to content

Commit

Permalink
Switch to Turing 0.20 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer authored Feb 4, 2022
1 parent 09e215a commit 34da72f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.6'
version: '1.7'
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- run: julia --project=docs -e '
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ StatsBase = "0.33"
StatsModels = "0.6.28"
TableOperations = "1.2"
Tables = "1.6"
Turing = "0.19"
Turing = "0.20"
julia = "1.6"
2 changes: 1 addition & 1 deletion test/turing_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@
@testset "NegativeBinomial2" begin
@test T.NegativeBinomial2(0, 1) == T.NegativeBinomial(1, 1)
@test T.NegativeBinomial2(2, 8) == T.NegativeBinomial(8, 0.8)
@test_throws ArgumentError T.NegativeBinomial2(0, -1)
@test_throws DomainError T.NegativeBinomial2(0, -1)
end
end

0 comments on commit 34da72f

Please sign in to comment.