julia> versioninfo()
Julia Version 1.7.2
Commit bf53498635 (2022-02-06 15:21 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: AMD Ryzen 7 5800H with Radeon Graphics
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, znver3)
For the code: This happens when I included a package (let’s call it FOO for the moment) from .julia/dev/FOO via
using FOO
Interestingly, with the package FOO there come some examples, also using the package without the warnings popping up.
Recently, I added another package to the dependencies of FOO and updated the Project.toml file via Pkg. Still, the “built-in” example programs run, while my custom one gives the warnings.
Solution: Calling
pkg> update
Seems to have solved the issue.