Skip to content
Christian Brodbeck edited this page Mar 31, 2020 · 1 revision

SciPy recently issues a lot of deprecation warnings: FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated. These are due to changes in other libraries and not currently relevant. To suppress them, use

>>> import warnings
>>> warnings.filterwarnings('ignore', category=FutureWarning)

(To permanently suppress them, add these lines to an iPython startup script)