Kristoffer Carlsson

Results 1634 comments of Kristoffer Carlsson

I think it is loaded (how else would there be a Pkg REPL) but it is "hidden". Those linked PRs are indeed relevant.

https://github.com/JuliaLang/julia/issues/54768#issuecomment-2178056596

This is just in the REPL so getting a warning in those intentional cases is perhaps not the end of the world.

There is not really any Pkg code being executed here so this repo is actually probably better.

I don't think so. That's related to stdlibs in the sysimage.

I looked at this now and this is identical to https://github.com/JuliaLang/julia/issues/53081. The issue is the following: - ParallelStencil depends on AMDGPU and CUDA. - The package depends on ParallelStencil and...

On https://github.com/JuliaLang/julia/pull/53972 that prints ``` (jl_RqaGz1) pkg> precompile ┌ Warning: Circular dependency detected. Precompilation will be skipped for: │ Base.PkgId(Base.UUID("47e5d35c-c2d0-5408-acd2-db5e4eb7937b"), "MolSimStylePlotting") │ Base.PkgId(Base.UUID("e2da7e33-71d8-5845-bdbe-2073996eaa79"), "REMDPlotting") │ Base.PkgId(Base.UUID("169be7d3-c844-588e-8a3f-7557bbfa2dc9"), "BlockAveragesPlotting") └ @ Base.Precompilation...

All three of the extensions seem to have Plots as their trigger. So the cycle is the following: 1. BlockAveragesPlotting loads MolSimToolkit + Plots 2. This causes MolSimStylePlotting to load....

An extension gets loaded when all its triggers (+ parent) get loaded. So if you have two extensions that both load the parent and the triggers they will try to...