Skip to content

CI: temporarily pin numpydoc<1.7 to unblock docstring validation (GH#61720) #61726

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

Closed
wants to merge 2 commits into from
Closed
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 doc/source/user_guide/timeseries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ a ``Series``, this returns a ``Series`` (with the same index), while a list-like
is converted to a ``DatetimeIndex``:

.. ipython:: python
:okwarning:

pd.to_datetime(pd.Series(["Jul 31, 2009", "Jan 10, 2010", None]))

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dependencies:
# documentation
- gitpython # obtain contributors from git for whatsnew
- natsort # DataFrame.sort_values doctest
- numpydoc
- numpydoc<1.7
- pydata-sphinx-theme=0.16
- pytest-cython # doctest
- sphinx
Expand Down
5 changes: 0 additions & 5 deletions pandas/_config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,11 +462,6 @@ def option_context(*args) -> Generator[None]:
interpreted as (pattern, value) pairs. Alternatively, a single
dictionary of {pattern: value} may be provided.

Returns
-------
None
No return value.

Yields
------
None
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ tokenize-rt
pre-commit>=4.2.0
gitpython
natsort
numpydoc
numpydoc<1.7
pydata-sphinx-theme==0.16
pytest-cython
sphinx
Expand Down
Loading