Skip to content

Commit 4859be9

Browse files
DOC/CLN: remove versionadded/changed:: 0.23 (#36338)
1 parent fef1830 commit 4859be9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+21
-211
lines changed

doc/source/development/extending.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ applies only to certain dtypes.
7373
Extension types
7474
---------------
7575

76-
.. versionadded:: 0.23.0
77-
7876
.. warning::
7977

8078
The :class:`pandas.api.extensions.ExtensionDtype` and :class:`pandas.api.extensions.ExtensionArray` APIs are new and

doc/source/getting_started/install.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,6 @@ Optional dependencies for parsing HTML
301301
One of the following combinations of libraries is needed to use the
302302
top-level :func:`~pandas.read_html` function:
303303

304-
.. versionchanged:: 0.23.0
305-
306304
* `BeautifulSoup4`_ and `html5lib`_
307305
* `BeautifulSoup4`_ and `lxml`_
308306
* `BeautifulSoup4`_ and `html5lib`_ and `lxml`_

doc/source/user_guide/advanced.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,8 +1065,6 @@ are closed on. Intervals are closed on the right side by default.
10651065
10661066
pd.interval_range(start=0, end=4, closed='neither')
10671067
1068-
.. versionadded:: 0.23.0
1069-
10701068
Specifying ``start``, ``end``, and ``periods`` will generate a range of evenly spaced
10711069
intervals from ``start`` to ``end`` inclusively, with ``periods`` number of elements
10721070
in the resulting ``IntervalIndex``:

doc/source/user_guide/basics.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1877,8 +1877,6 @@ different columns.
18771877
By indexes and values
18781878
~~~~~~~~~~~~~~~~~~~~~
18791879

1880-
.. versionadded:: 0.23.0
1881-
18821880
Strings passed as the ``by`` parameter to :meth:`DataFrame.sort_values` may
18831881
refer to either columns or index level names.
18841882

doc/source/user_guide/categorical.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ only labels present in a given column are categories:
112112
df['B']
113113
114114
115-
.. versionadded:: 0.23.0
116-
117115
Analogously, all columns in an existing ``DataFrame`` can be batch converted using :meth:`DataFrame.astype`:
118116

119117
.. ipython:: python

doc/source/user_guide/dsintro.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,8 +597,6 @@ to be inserted (for example, a ``Series`` or NumPy array), or a function
597597
of one argument to be called on the ``DataFrame``. A *copy* of the original
598598
DataFrame is returned, with the new values inserted.
599599

600-
.. versionchanged:: 0.23.0
601-
602600
Starting with Python 3.6 the order of ``**kwargs`` is preserved. This allows
603601
for *dependent* assignment, where an expression later in ``**kwargs`` can refer
604602
to a column created earlier in the same :meth:`~DataFrame.assign`.

doc/source/user_guide/io.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2360,8 +2360,6 @@ A few notes on the generated table schema:
23602360
then ``level_<i>`` is used.
23612361

23622362

2363-
.. versionadded:: 0.23.0
2364-
23652363
``read_json`` also accepts ``orient='table'`` as an argument. This allows for
23662364
the preservation of metadata such as dtypes and index names in a
23672365
round-trippable manner.

doc/source/user_guide/merging.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,6 @@ behavior:
175175
176176
.. warning::
177177

178-
.. versionchanged:: 0.23.0
179-
180178
The default behavior with ``join='outer'`` is to sort the other axis
181179
(columns in this case). In a future version of pandas, the default will
182180
be to not sort. We specified ``sort=False`` to opt in to the new
@@ -1198,8 +1196,6 @@ done using the following code.
11981196
Merging on a combination of columns and index levels
11991197
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12001198

1201-
.. versionadded:: 0.23
1202-
12031199
Strings passed as the ``on``, ``left_on``, and ``right_on`` parameters
12041200
may refer to either column names or index level names. This enables merging
12051201
``DataFrame`` instances on a combination of index levels and columns without

doc/source/user_guide/missing_data.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,6 @@ examined :ref:`in the API <api.dataframe.missing>`.
336336
Interpolation
337337
~~~~~~~~~~~~~
338338

339-
.. versionadded:: 0.23.0
340-
341-
The ``limit_area`` keyword argument was added.
342-
343339
Both Series and DataFrame objects have :meth:`~DataFrame.interpolate`
344340
that, by default, performs linear interpolation at missing data points.
345341

@@ -507,8 +503,8 @@ By default, ``NaN`` values are filled in a ``forward`` direction. Use
507503
ser.interpolate(limit_direction='both')
508504
509505
By default, ``NaN`` values are filled whether they are inside (surrounded by)
510-
existing valid values, or outside existing valid values. Introduced in v0.23
511-
the ``limit_area`` parameter restricts filling to either inside or outside values.
506+
existing valid values, or outside existing valid values. The ``limit_area``
507+
parameter restricts filling to either inside or outside values.
512508

513509
.. ipython:: python
514510

doc/source/user_guide/reshaping.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,6 @@ To choose another dtype, use the ``dtype`` argument:
679679
680680
pd.get_dummies(df, dtype=bool).dtypes
681681
682-
.. versionadded:: 0.23.0
683-
684682
685683
.. _reshaping.factorize:
686684

0 commit comments

Comments
 (0)