Skip to content

Commit 41bbc7b

Browse files
DOC: use numpydoc_use_blockquotes=False for compatibility
1 parent 77cf8a2 commit 41bbc7b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

doc/source/api.rst

+4
Original file line numberDiff line numberDiff line change
@@ -2557,6 +2557,8 @@ objects.
25572557
generated/pandas.Index.asi8
25582558
generated/pandas.Index.data
25592559
generated/pandas.Index.flags
2560+
generated/pandas.Index.holds_integer
2561+
generated/pandas.Index.is_type_compatible
25602562
generated/pandas.Index.nlevels
25612563
generated/pandas.Index.sort
25622564
generated/pandas.Panel.agg
@@ -2572,4 +2574,6 @@ objects.
25722574
generated/pandas.Series.blocks
25732575
generated/pandas.Series.from_array
25742576
generated/pandas.Series.ix
2577+
generated/pandas.Series.imag
2578+
generated/pandas.Series.real
25752579
generated/pandas.Timestamp.offset

doc/source/conf.py

+6
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@
8686
if any(re.match("\s*api\s*", l) for l in index_rst_lines):
8787
autosummary_generate = True
8888

89+
# numpydoc
90+
# for now use old parameter listing (styling + **kwargs problem)
91+
numpydoc_use_blockquotes = True
92+
# use member listing for attributes
93+
numpydoc_attributes_as_param_list = False
94+
8995
# matplotlib plot directive
9096
plot_include_source = True
9197
plot_formats = [("png", 90)]

0 commit comments

Comments
 (0)