Skip to content

DOC: Move ecosystem.rst to getting started section #52944

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 4 commits into from
May 1, 2023
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
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 @@ -464,7 +464,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