I want to make some changes to my local install of SuiteSparse.jl
and in the REPL I do
]dev SuiteSparse
This create an image of the source code in ~/julia/dev/SuiteSparse
that I can play with.
However, importing the module with using SuiteSparse
and then checking pathof(SuiteSparse)
does not load the this modified code but loads the version that comes with the julia source install in $JULIA_INSTALL_PREFIX/usr/share/julia/stdlib/v1.1/SuiteSparse/src/SuiteSparse.jl
.
Is there a catch with ]dev
-ing stdlib
packages?