-
-
Notifications
You must be signed in to change notification settings - Fork 656
Add StaticArrays v0.9 upper cap for Plots #19050
Add StaticArrays v0.9 upper cap for Plots #19050
Conversation
Great. It's probably due to JuliaCI/PackageEvaluator.jl#164 that it didn't run. |
Wouldn't it be better to release StaticArrays 0.9.1? |
StaticArrays has deprecated its FixedSizeArrays submodule which breaks Plots until it is updated. |
Right but it is only deprecated so it shouldnt break stuff. Should fix StaticArrays too at least. |
Yes but they renamed it |
Daniel pushed a fix for this in Plots JuliaPlots/Plots.jl#1803 |
julia> using StaticArrays.FixedSizeArrays
WARNING: StaticArrays.FixedSizeArrays is deprecatedStaticArrays.FixedSizeArrays is deprecated. Use StaticArrays directly.
in module StaticArrays
julia> Vec(1,2,3)
3-element Vec{3,Int64}:
1
2
3 We do continue to provide a So I don't understand what went wrong here, yet. |
Proposed fix: JuliaArrays/StaticArrays.jl#527 |
The reason for renaming these modules at all was simply so that we can get a proper deprecation warning via |
See JuliaPlots/Plots.jl#1802.
I don't understand why this wasn't catched by the CIBot in #19043.
It seems it didn't run the Plots tests while StaticArrays is in its dependencies.