You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.25.2.rst
+1
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,7 @@ Indexing
50
50
^^^^^^^^
51
51
52
52
- Fix regression in :meth:`DataFrame.reindex` not following ``limit`` argument (:issue:`28631`).
53
+
- Fix regression in :meth:`RangeIndex.get_indexer` for decreasing :class:`RangeIndex` where target values may be improperly identified as missing/present (:issue:`28678`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.0.0.rst
+4-2
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,9 @@ Documentation Improvements
123
123
Deprecations
124
124
~~~~~~~~~~~~
125
125
126
-
-
126
+
- ``Index.set_value`` has been deprecated. For a given index ``idx``, array ``arr``,
127
+
value in ``idx`` of ``idx_val`` and a new value of ``val``, ``idx.set_value(arr, idx_val, val)``
128
+
is equivalent to ``arr[idx.get_loc(idx_val)] = val``, which should be used instead (:issue:`28621`).
127
129
-
128
130
129
131
.. _whatsnew_1000.prior_deprecations:
@@ -190,7 +192,7 @@ Datetimelike
190
192
- Bug in :class:`Series` and :class:`DataFrame` with integer dtype failing to raise ``TypeError`` when adding or subtracting a ``np.datetime64`` object (:issue:`28080`)
191
193
- Bug in :class:`Week` with ``weekday`` incorrectly raising ``AttributeError`` instead of ``TypeError`` when adding or subtracting an invalid type (:issue:`28530`)
192
194
- Bug in :class:`DataFrame` arithmetic operations when operating with a :class:`Series` with dtype `'timedelta64[ns]'` (:issue:`28049`)
193
-
-
195
+
- Bug in :func:`pandas.core.groupby.generic.SeriesGroupBy.apply` raising ``ValueError`` when a column in the original DataFrame is a datetime and the column labels are not standard integers (:issue:`28247`)
0 commit comments