diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d54176..28cab42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: matrix: version: - '1' - - '1.4' + - '1.5' - 'nightly' os: - ubuntu-latest diff --git a/Project.toml b/Project.toml index 88e1246..6b37ca1 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Turkie" uuid = "8156cc02-0533-41cd-9345-13411ebe105f" authors = ["Theo Galy-Fajou and contributors"] -version = "0.1.5" +version = "0.1.6" [deps] ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4" @@ -15,10 +15,10 @@ Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0" ColorSchemes = "3.10" Colors = "0.12" KernelDensity = "0.5, 0.6" -Makie = "0.13" +Makie = "0.13, 0.14, 0.15" OnlineStats = "1.5" Turing = "0.15, 0.16" -julia = "1.4" +julia = "1.5" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/test/runtests.jl b/test/runtests.jl index 0edeabc..cde0295 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -42,13 +42,13 @@ using Turing @testset "Vector of symbols" begin for stat in [:histkde, :kde, :hist, :mean, :var, :trace, :autocov] cb = TurkieCallback(Dict(:m => [stat])) - sample(model, MH(), 50; callback=cb) + sample(model, MH(), 50; progress=false, callback=cb) end end @testset "Series" begin for stat in [Mean(Float32), Variance(Float32)] cb = TurkieCallback(model, OnlineStats.Series(stat)) - sample(model, MH(), 50; callback=cb) + sample(model, MH(), 50; progress=false, callback=cb) end end end