I have some “local” packages, some of which are not even on Github, WIP. My current setup just has them in a directory which I put in LOAD_PATH
; mainly so that they don’t mix with packages in ~/julia/v0.6
.
Now I want to use these both on v0.6
and v0.7
. Is it OK to just move (mv
) my local packages to ~/.julia/dev
, and have something like
if VERSION < v"0.7-"
push!(LOAD_PATH, expanduser("~/.julia/dev"))
end
in my startup file? This seems to work on both v0.6 and v0.7-, I just want to make sure that they won’t be overwritten or modified automatically there.