Skip to content

Commit 01fd470

Browse files
mroeschkeYi Wei
authored and
Yi Wei
committed
DOC: Move ecosystem.rst to getting started section (pandas-dev#52944)
* DOC: Move ecosystem.rst to getting started section * Also error on ipython warnings * Migrate existing ecosystem to web and fix references
1 parent bc0022e commit 01fd470

File tree

12 files changed

+173
-879
lines changed

12 files changed

+173
-879
lines changed

doc/data/tips.csv

-245
This file was deleted.

doc/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def main():
321321
help=(
322322
"filename (relative to the 'source' folder) of section or method name to "
323323
"compile, e.g. 'development/contributing.rst', "
324-
"'ecosystem.rst', 'pandas.DataFrame.join'"
324+
"'pandas.DataFrame.join'"
325325
),
326326
)
327327
argparser.add_argument(

doc/source/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@
467467
}
468468

469469

470-
ipython_warning_is_error = False
471470
ipython_execlines = [
472471
"import numpy as np",
473472
"import pandas as pd",

doc/source/development/extending.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Now users can access your methods using the ``geo`` namespace:
6060

6161
This can be a convenient way to extend pandas objects without subclassing them.
6262
If you write a custom accessor, make a pull request adding it to our
63-
:ref:`ecosystem` page.
63+
`ecosystem <https://pandas.pydata.org/community/ecosystem.html>`_ page.
6464

6565
We highly recommend validating the data in your accessor's ``__init__``.
6666
In our ``GeoAccessor``, we validate that the data contains the expected columns,
@@ -91,7 +91,7 @@ objects). Many methods like :func:`pandas.isna` will dispatch to the extension
9191
type's implementation.
9292

9393
If you're building a library that implements the interface, please publicize it
94-
on :ref:`ecosystem.extensions`.
94+
on `the ecosystem page <https://pandas.pydata.org/community/ecosystem.html>`_.
9595

9696
The interface consists of two classes.
9797

0 commit comments

Comments
 (0)