Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
import re
import inspect
import importlib
import warnings

from pandas.compat import u, PY3

try:
Expand Down Expand Up @@ -375,6 +377,13 @@
'wiki': ('https://github.com/pandas-dev/pandas/wiki/%s',
'wiki ')}


# ignore all deprecation warnings from Panel during doc build
# (to avoid the need to add :okwarning: in many places)
warnings.filterwarnings("ignore", message="\nPanel is deprecated",
category=FutureWarning)


ipython_exec_lines = [
'import numpy as np',
'import pandas as pd',
Expand Down