If I freshly install GLMakie I get the following warnings:
┌ GLMakie
│ [pid 70482] waiting for IO to finish:
│ Handle type uv_handle_t->data
│ timer 0x60503c7f60f0->0x714926932110
│ 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 70482] waiting for IO to finish:
│ Handle type uv_handle_t->data
│ timer 0x60503c7f60f0->0x714926932110
│ 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.
└
How can this be fixed?
In addition, if I execute the following script:
#!/bin/bash -eu
rm -rf /tmp/testdepot
mkdir /tmp/testdepot
rm -rf /tmp/test
mkdir /tmp/test
cd /tmp/test
export JULIA_DEPOT_PATH=/tmp/testdepot
julia --project="." -e "using Pkg; Pkg.add(\"KiteViewers\"); using KiteViewers; Pkg.test(\"KiteViewers\")"
I get the following, additional warnings:
┌ GLMakie
│ WARNING: Makie.Combined is deprecated, use Plot instead.
│ likely near none:1
│ WARNING: importing deprecated binding Makie.Combined into GLMakie.
│ , use Plot instead.
│ WARNING: Makie.ContinuousSurface is deprecated, use VertexGrid instead.
│ likely near none:1
│ WARNING: importing deprecated binding Makie.ContinuousSurface into GLMakie.
│ , use VertexGrid instead.
│ WARNING: Makie.DiscreteSurface is deprecated, use CellGrid instead.
│ likely near none:1
│ WARNING: importing deprecated binding Makie.DiscreteSurface into GLMakie.
│ , use CellGrid instead.
└
This is strange, because the functions Combined or ContinousSurface are not used, neither in KiteViewers not in GLMakie.
Any idea where these warnings might be coming from?