From 47400d5979bf1548c6a5c1721b2d5ee8675da14b Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Sat, 30 Oct 2021 09:03:57 -0500 Subject: [PATCH] ignore np.MachAr deprecation warning [skip circle] --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py b/doc/conf.py index fdb8ae0bd36..aa47209597b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -853,6 +853,7 @@ def reset_warnings(gallery_conf, fname): r'Passing a schema to Validator\.iter_errors', # jsonschema "default value of type 'dict' in an Any trait will", # traits 'rcParams is deprecated', # PyVista rcParams -> global_theme + '`np.MachAr` is deprecated', # via statsmodels (yule-walker) 'to mean no clipping', ): warnings.filterwarnings( # deal with other modules having bad imports