Skip to content

Commit 6591384

Browse files
github-actions[bot]CompatHelper Juliapalday
authored
CompatHelper: bump compat for Makie to 0.24, (keep existing compat) (#107)
* CompatHelper: bump compat for Makie to 0.24, (keep existing compat) * CairoMakie compat * avoid arrows! deprecation --------- Co-authored-by: CompatHelper Julia <compathelper_noreply@julialang.org> Co-authored-by: Phillip Alday <me@phillipalday.com>
1 parent 1529b3e commit 6591384

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MixedModelsMakie"
22
uuid = "b12ae82c-6730-437f-aff9-d2c38332a376"
33
authors = ["Phillip Alday <me@phillipalday.com>", "Douglas Bates <dmbates@gmail.com>", "contributors"]
4-
version = "0.4.8"
4+
version = "0.4.9"
55

66
[deps]
77
BSplineKit = "093aae92-e908-43d7-9660-e50ee39d5a0a"
@@ -19,11 +19,11 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1919
[compat]
2020
Aqua = "0.5, 0.6"
2121
BSplineKit = "0.15, 0.16, 0.17, 0.18, 0.19"
22-
CairoMakie = "0.11, 0.12, 0.13, 0.14"
22+
CairoMakie = "0.11, 0.12, 0.13, 0.14, 0.15"
2323
DataFrames = "1"
2424
Distributions = "0.25"
2525
KernelDensity = "0.6.3"
26-
Makie = "0.20, 0.21, 0.22, 0.23"
26+
Makie = "0.20, 0.21, 0.22, 0.23, 0.24"
2727
MixedModels = "4.14"
2828
PrecompileTools = "1"
2929
Random = "1"

src/MixedModelsMakie.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ export RanefInfo,
4343
const Indexable = Union{Makie.Figure,Makie.GridLayout,Makie.GridPosition,
4444
Makie.GridSubposition}
4545

46+
if isdefined(Makie, :arrows2d!)
47+
function arrows!(args...; kwargs...)
48+
return arrows2d!(args...; shaftwidth=1, tipwidth=5, minshaftlength=0, kwargs...)
49+
end
50+
# arrows!(args...; kwargs...) = Makie.arrows!(args...; kwargs...)
51+
end
52+
4653
include("utilities.jl")
4754
include("shrinkage.jl")
4855
include("caterpillar.jl")

0 commit comments

Comments
 (0)