Skip to content

Commit

Permalink
Update compat Makie and remove progress bars (#32)
Browse files Browse the repository at this point in the history
* Update compat Makie

* Bump compat

* Give up on 1.4 compatibility
  • Loading branch information
theogf authored Jul 16, 2021
1 parent 30e385b commit 0c555c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
version:
- '1'
- '1.4'
- '1.5'
- 'nightly'
os:
- ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Turkie"
uuid = "8156cc02-0533-41cd-9345-13411ebe105f"
authors = ["Theo Galy-Fajou <[email protected]> and contributors"]
version = "0.1.5"
version = "0.1.6"

[deps]
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

2 comments on commit 0c555c2

@theogf
Copy link
Owner Author

@theogf theogf commented on 0c555c2 Jul 16, 2021

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/40989

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.1.6 -m "<description of version>" 0c555c22e21c984bce0482763c12a05f0715e27b
git push origin v0.1.6

Please sign in to comment.