Skip to content

DOC: Remove vendored IPython.sphinext #18193

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
merged 2 commits into from
Nov 9, 2017
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ doc/build/html/index.html
doc/tmp.sv
doc/source/styled.xlsx
doc/source/templates/
doc/source/savefig/
5 changes: 2 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@
'sphinx.ext.extlinks',
'sphinx.ext.todo',
'numpydoc', # used to parse numpy-style docstrings for autodoc
'ipython_sphinxext.ipython_directive',
'ipython_sphinxext.ipython_console_highlighting',
'IPython.sphinxext.ipython_console_highlighting', # lowercase didn't work
'IPython.sphinxext.ipython_directive',
'IPython.sphinxext.ipython_console_highlighting',
'sphinx.ext.intersphinx',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
Expand Down
6 changes: 3 additions & 3 deletions doc/source/whatsnew/v0.7.3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ New features
from pandas.tools.plotting import scatter_matrix
scatter_matrix(df, alpha=0.2)

.. image:: _static/scatter_matrix_kde.png
.. image:: savefig/scatter_matrix_kde.png
:width: 5in

- Add ``stacked`` argument to Series and DataFrame's ``plot`` method for
Expand All @@ -32,14 +32,14 @@ New features

df.plot(kind='bar', stacked=True)

.. image:: _static/bar_plot_stacked_ex.png
.. image:: savefig/bar_plot_stacked_ex.png
:width: 4in

.. code-block:: python

df.plot(kind='barh', stacked=True)

.. image:: _static/barh_plot_stacked_ex.png
.. image:: savefig/barh_plot_stacked_ex.png
:width: 4in

- Add log x and y :ref:`scaling options <visualization.basic>` to
Expand Down
Empty file.
116 changes: 0 additions & 116 deletions doc/sphinxext/ipython_sphinxext/ipython_console_highlighting.py

This file was deleted.

Loading