Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plotting deprecations in tests #732

Closed
felixcremer opened this issue Jun 14, 2024 · 1 comment
Closed

Plotting deprecations in tests #732

felixcremer opened this issue Jun 14, 2024 · 1 comment
Labels

Comments

@felixcremer
Copy link
Contributor

Currently our tests throw the following deprecations below. We should try to switch to the new syntax.

│  WARNING: Makie.Combined is deprecated, use Plot instead.
│    likely near none:1
│  WARNING: importing deprecated binding Makie.Combined into CairoMakie.
│  , use Plot instead.
│  WARNING: Makie.ContinuousSurface is deprecated, use VertexGrid instead.
│    likely near none:1
│  WARNING: importing deprecated binding Makie.ContinuousSurface into CairoMakie.
│  , use VertexGrid instead.
│  WARNING: Makie.DiscreteSurface is deprecated, use CellGrid instead.
│    likely near none:1
│  WARNING: importing deprecated binding Makie.DiscreteSurface into CairoMakie.
│  , use CellGrid instead.
│  
│  [pid 5771] waiting for IO to finish:
│   Handle type        uv_handle_t->data
│   timer              0x25c4450->0x7f5f8b701990
│  This means that a package has started a background task or event source that has not finished running. For precompilation to complete successfully, the event source needs to be closed explicitly. See the developer documentation on fixing precompilation hangs for more help.
│  
│  [pid 5771] waiting for IO to finish:
│   Handle type        uv_handle_t->data
│   timer              0x25c4450->0x7f5f8b701990
│  This means that a package has started a background task or event source that has not finished running. For precompilation to complete successfully, the event source needs to be closed explicitly. See the developer documentation on fixing precompilation hangs for more help.
└  
┌ DimensionalData  DimensionalDataMakie
│  WARNING: Wrapping `Vararg` directly in UnionAll is deprecated (wrap the tuple instead).
│  You may need to write `f(x::Vararg{T})` rather than `f(x::Vararg{<:T})` or `f(x::Vararg{T}) where T` instead of `f(x::Vararg{T} where T)`.
│  WARNING: Wrapping `Vararg` directly in UnionAll is deprecated (wrap the tuple instead).
│  You may need to write `f(x::Vararg{T})` rather than `f(x::Vararg{<:T})` or `f(x::Vararg{T}) where T` instead of `f(x::Vararg{T} where T)`.
└  
┌ Plots
│  WARNING: using deprecated binding Colors.RGB1 in PlotUtils.
│  , use XRGB instead.
│  WARNING: using deprecated binding PlotUtils.RGB1 in Plots.
│  , use ColorTypes.XRGB{T} where T<:Union{AbstractFloat, FixedPointNumbers.FixedPoint{T, f} where f where T<:Integer} instead.
│  WARNING: using deprecated binding Colors.RGB4 in PlotUtils.
│  , use RGBX instead.
│  WARNING: using deprecated binding PlotUtils.RGB4 in Plots.
│  , use ColorTypes.RGBX{T} where T<:Union{AbstractFloat, FixedPointNumbers.FixedPoint{T, f} where f where T<:Integer} instead.
@asinghvi17
Copy link
Collaborator

Fixed by #795

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants