We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df38f66 commit 07137a5Copy full SHA for 07137a5
doc/source/conf.py
@@ -15,6 +15,8 @@
15
import re
16
import inspect
17
import importlib
18
+import warnings
19
+
20
from pandas.compat import u, PY3
21
22
try:
@@ -375,6 +377,13 @@
375
377
'wiki': ('https://github.com/pandas-dev/pandas/wiki/%s',
376
378
'wiki ')}
379
380
381
+# ignore all deprecation warnings from Panel during doc build
382
+# (to avoid the need to add :okwarning: in many places)
383
+warnings.filterwarnings("ignore", message="\nPanel is deprecated",
384
+ category=FutureWarning)
385
386
387
ipython_exec_lines = [
388
'import numpy as np',
389
'import pandas as pd',
0 commit comments