Skip to content

Commit 9405450

Browse files
mroeschkepmhatre1
authored andcommitted
DEPR: Remove Index type checking attributes (pandas-dev#57231)
* DEPR: Remove Index type checking attributes * Remove is_floating usage
1 parent 4aba367 commit 9405450

File tree

8 files changed

+31
-462
lines changed

8 files changed

+31
-462
lines changed

doc/source/reference/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ to be stable.
6262
..
6363
.. toctree::
6464
65-
api/pandas.Index.holds_integer
6665
api/pandas.Index.nlevels
6766
api/pandas.Index.sort
6867

doc/source/reference/indexing.rst

-7
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@ Modifying and computations
6161
Index.identical
6262
Index.insert
6363
Index.is_
64-
Index.is_boolean
65-
Index.is_categorical
66-
Index.is_floating
67-
Index.is_integer
68-
Index.is_interval
69-
Index.is_numeric
70-
Index.is_object
7164
Index.min
7265
Index.max
7366
Index.reindex

doc/source/whatsnew/v3.0.0.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ Deprecations
104104
Removal of prior version deprecations/changes
105105
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
106106
- All arguments except the first ``path``-like argument in IO writers are now keyword only (:issue:`54229`)
107-
- Removed :meth:`DataFrame.first` and :meth:`DataFrame.last` (:issue:`53710`)
108-
- Removed :meth:`DataFrameGroupby.fillna` and :meth:`SeriesGroupBy.fillna` (:issue:`55719`)
109107
- Removed ``DataFrameGroupBy.grouper`` and ``SeriesGroupBy.grouper`` (:issue:`56521`)
108+
- Removed ``DataFrameGroupby.fillna`` and ``SeriesGroupBy.fillna``` (:issue:`55719`)
110109
- Removed ``axis`` argument from :meth:`DataFrame.groupby`, :meth:`Series.groupby`, :meth:`DataFrame.rolling`, :meth:`Series.rolling`, :meth:`DataFrame.resample`, and :meth:`Series.resample` (:issue:`51203`)
111110
- Removed ``axis`` argument from all groupby operations (:issue:`50405`)
112111
- Removed ``pandas.io.sql.execute`` (:issue:`50185`)
113112
- Removed ``read_gbq`` and ``DataFrame.to_gbq``. Use ``pandas_gbq.read_gbq`` and ``pandas_gbq.to_gbq`` instead https://pandas-gbq.readthedocs.io/en/latest/api.html (:issue:`55525`)
114113
- Removed deprecated argument ``obj`` in :meth:`.DataFrameGroupBy.get_group` and :meth:`.SeriesGroupBy.get_group` (:issue:`53545`)
115114
- Removed the ``ArrayManager`` (:issue:`55043`)
115+
- Removed the ``is_boolean``, ``is_integer``, ``is_floating``, ``holds_integer``, ``is_numeric``, ``is_categorical``, ``is_object``, and ``is_interval`` attributes of :class:`Index` (:issue:`50042`)
116116
- Removed unused arguments ``*args`` and ``**kwargs`` in :class:`Resampler` methods (:issue:`50977`)
117117
- Unrecognized timezones when parsing strings to datetimes now raises a ``ValueError`` (:issue:`51477`)
118118

0 commit comments

Comments
 (0)