Skip to content

Commit 0c555c2

Browse files
authored
Update compat Makie and remove progress bars (#32)
* Update compat Makie * Bump compat * Give up on 1.4 compatibility
1 parent 30e385b commit 0c555c2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
version:
1616
- '1'
17-
- '1.4'
17+
- '1.5'
1818
- 'nightly'
1919
os:
2020
- ubuntu-latest

Project.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Turkie"
22
uuid = "8156cc02-0533-41cd-9345-13411ebe105f"
33
authors = ["Theo Galy-Fajou <[email protected]> and contributors"]
4-
version = "0.1.5"
4+
version = "0.1.6"
55

66
[deps]
77
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
@@ -15,10 +15,10 @@ Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
1515
ColorSchemes = "3.10"
1616
Colors = "0.12"
1717
KernelDensity = "0.5, 0.6"
18-
Makie = "0.13"
18+
Makie = "0.13, 0.14, 0.15"
1919
OnlineStats = "1.5"
2020
Turing = "0.15, 0.16"
21-
julia = "1.4"
21+
julia = "1.5"
2222

2323
[extras]
2424
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ using Turing
4242
@testset "Vector of symbols" begin
4343
for stat in [:histkde, :kde, :hist, :mean, :var, :trace, :autocov]
4444
cb = TurkieCallback(Dict(:m => [stat]))
45-
sample(model, MH(), 50; callback=cb)
45+
sample(model, MH(), 50; progress=false, callback=cb)
4646
end
4747
end
4848
@testset "Series" begin
4949
for stat in [Mean(Float32), Variance(Float32)]
5050
cb = TurkieCallback(model, OnlineStats.Series(stat))
51-
sample(model, MH(), 50; callback=cb)
51+
sample(model, MH(), 50; progress=false, callback=cb)
5252
end
5353
end
5454
end

0 commit comments

Comments
 (0)