Skip to content

Commit

Permalink
DOC: Move ecosystem.rst to getting started section (pandas-dev#52944)
Browse files Browse the repository at this point in the history
* DOC: Move ecosystem.rst to getting started section

* Also error on ipython warnings

* Migrate existing ecosystem to web and fix references
  • Loading branch information
mroeschke authored and topper-123 committed May 7, 2023
1 parent 2249c74 commit b37d689
Show file tree
Hide file tree
Showing 12 changed files with 173 additions and 879 deletions.
245 changes: 0 additions & 245 deletions doc/data/tips.csv

This file was deleted.

2 changes: 1 addition & 1 deletion doc/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def main():
help=(
"filename (relative to the 'source' folder) of section or method name to "
"compile, e.g. 'development/contributing.rst', "
"'ecosystem.rst', 'pandas.DataFrame.join'"
"'pandas.DataFrame.join'"
),
)
argparser.add_argument(
Expand Down
1 change: 0 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,6 @@
}


ipython_warning_is_error = False
ipython_execlines = [
"import numpy as np",
"import pandas as pd",
Expand Down
4 changes: 2 additions & 2 deletions doc/source/development/extending.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Now users can access your methods using the ``geo`` namespace:

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

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

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

The interface consists of two classes.

Expand Down
Loading

0 comments on commit b37d689

Please sign in to comment.