Disable deprecation warnings for all packages but 'mine'

Is it possible to disable deprecation warnings for certain packages/folders/files?

Right now, I try to update some of my code to v0.7 which relies on a number of other packages. I am (for now) not interested in all the deprecations in the packages I use.

Also, the PyCall deprecations seem to run for at least 10 minutes which is very cumbersome (I wonder if I have done something wrong, given that I get thousands of lines of the same warning). See also here:
https://github.com/JuliaPy/PyCall.jl/issues/478

1 Like

I think that first starting Julia with --depwarn=no and then ‘using’ all packages that I rely on (to precompile), might actually help me. I will try this out.