Skip to content

Commit

Permalink
Merge pull request #5471 from toslunar/np115-scipy0-warn
Browse files Browse the repository at this point in the history
Ignore scipy<1.0 is warned by using deprecated feature of numpy>=1.15
  • Loading branch information
kmaehashi committed Oct 15, 2018
1 parent 1ce7a0c commit 3da0be4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.cfg
Expand Up @@ -9,6 +9,12 @@ exclude = .eggs,*.egg,build,caffe_pb2.py,caffe_pb3.py,docs,.git
[tool:pytest]
filterwarnings= ignore::FutureWarning
error::DeprecationWarning
# importing old SciPy is warned because it tries to
# import nose via numpy.testing
ignore::DeprecationWarning:scipy._lib._numpy_compat
# importing stats from old SciPy is warned because it tries to
# import numpy.testing.decorators
ignore::DeprecationWarning:scipy.stats.morestats
# Theano 0.8 causes DeprecationWarnings. It is fixed in 0.9.
ignore::DeprecationWarning:theano.configparser
# Theano 1.0.2 passes a deprecated argument to distutils during
Expand Down

0 comments on commit 3da0be4

Please sign in to comment.