Skip to content

Commit cd817a0

Browse files
committed
cleanup whatsnew/v1.4.0.rst
1 parent 64da71f commit cd817a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/source/whatsnew/v1.4.0.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,14 @@ Deprecations
206206

207207
Deprecated Int64Index, UInt64Index & Float64Index
208208
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
209-
:class:`Int64Index`, :class:`UInt64Index` (:issue:`43028`) and :class:`Float64Index` have
210-
been deprecated in favor of the new :class:`NumericIndex` (:issue:`43028`).
209+
:class:`Int64Index`, :class:`UInt64Index` and :class:`Float64Index` have been deprecated
210+
in favor of the new :class:`NumericIndex` and will be removed in Pandas 2.0 (:issue:`43028`).
211211

212212
For the duration of Pandas 1.x, in order to maintain backward compatibility, calls to
213213
:class:`Index` will continue to return :class:`Int64Index`, :class:`UInt64Index` and :class:`Float64Index`
214214
when given numeric data, but in Pandas 2.0, a :class:`NumericIndex` will be returned.
215215

216-
*Current behavior (Pandas 1.x)*:
216+
*Current behavior*:
217217

218218
.. code-block:: ipython
219219
@@ -222,7 +222,7 @@ when given numeric data, but in Pandas 2.0, a :class:`NumericIndex` will be retu
222222
In [1]: pd.Index([1, 2, 3], dtype="uint64")
223223
Out [1]: UInt64Index([1, 2, 3], dtype='uint64')
224224
225-
*Future behavior (Pandas 2.0)*:
225+
*Future behavior*:
226226

227227
.. code-block:: ipython
228228

0 commit comments

Comments
 (0)