Skip to content

DOC: update vendored numpydoc version #20383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions doc/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2557,6 +2557,8 @@ objects.
generated/pandas.Index.asi8
generated/pandas.Index.data
generated/pandas.Index.flags
generated/pandas.Index.holds_integer
generated/pandas.Index.is_type_compatible
generated/pandas.Index.nlevels
generated/pandas.Index.sort
generated/pandas.Panel.agg
Expand All @@ -2572,4 +2574,6 @@ objects.
generated/pandas.Series.blocks
generated/pandas.Series.from_array
generated/pandas.Series.ix
generated/pandas.Series.imag
generated/pandas.Series.real
generated/pandas.Timestamp.offset
6 changes: 6 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@
if any(re.match("\s*api\s*", l) for l in index_rst_lines):
autosummary_generate = True

# numpydoc
# for now use old parameter listing (styling + **kwargs problem)
numpydoc_use_blockquotes = True
# use member listing for attributes
numpydoc_attributes_as_param_list = False

# matplotlib plot directive
plot_include_source = True
plot_formats = [("png", 90)]
Expand Down
7 changes: 6 additions & 1 deletion doc/sphinxext/numpydoc/__init__.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from __future__ import division, absolute_import, print_function

from .numpydoc import setup
__version__ = '0.8.0.dev0'


def setup(app, *args, **kwargs):
from .numpydoc import setup
return setup(app, *args, **kwargs)
169 changes: 0 additions & 169 deletions doc/sphinxext/numpydoc/comment_eater.py

This file was deleted.

Loading