# Disable deprecation warnings for all packages but 'mine'

**URL:** https://discourse.julialang.org/t/disable-deprecation-warnings-for-all-packages-but-mine/10029
**Category:** General Usage
**Created:** [March 28, 2018, 12:15pm UTC](https://discourse.julialang.org/t/disable-deprecation-warnings-for-all-packages-but-mine/10029 "2018-03-28T12:15:16Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![bernhard](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bernhard/32/2619_2.png) [@bernhard](https://discourse.julialang.org/u/bernhard)
#### Post date: [March 28, 2018, 12:15pm UTC](https://discourse.julialang.org/t/disable-deprecation-warnings-for-all-packages-but-mine/10029/1 "2018-03-28T12:15:16Z")

</div>

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](https://github.com/JuliaPy/PyCall.jl/issues/478)

---

<div class="post-metadata">

### Author: ![bernhard](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bernhard/32/2619_2.png) [@bernhard](https://discourse.julialang.org/u/bernhard)
#### Post date: [March 28, 2018, 1:09pm UTC](https://discourse.julialang.org/t/disable-deprecation-warnings-for-all-packages-but-mine/10029/2 "2018-03-28T13:09:46Z")

</div>

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.
