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/v2.0.0.rst
+4
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,8 @@ Optional libraries below the lowest tested version may still work, but are not c
124
124
+=================+=================+=========+
125
125
| pyarrow | 6.0.0 | X |
126
126
+-----------------+-----------------+---------+
127
+
| matplotlib | 3.6.0 | X |
128
+
+-----------------+-----------------+---------+
127
129
| fastparquet | 0.6.3 | X |
128
130
+-----------------+-----------------+---------+
129
131
@@ -282,6 +284,8 @@ Removal of prior version deprecations/changes
282
284
- Enforced disallowing the use of ``**kwargs`` in :class:`.ExcelWriter`; use the keyword argument ``engine_kwargs`` instead (:issue:`40430`)
283
285
- Enforced disallowing a tuple of column labels into :meth:`.DataFrameGroupBy.__getitem__` (:issue:`30546`)
284
286
- Enforced disallowing setting values with ``.loc`` using a positional slice. Use ``.loc`` with labels or ``.iloc`` with positions instead (:issue:`31840`)
287
+
- Enforced disallowing positional indexing with a ``float`` key even if that key is a round number, manually cast to integer instead (:issue:`34193`)
288
+
- Enforced disallowing indexing on a :class:`Index` or positional indexing on a :class:`Series` producing multi-dimensional objects e.g. ``obj[:, None]``, convert to numpy before indexing instead (:issue:`35141`)
285
289
- Enforced disallowing ``dict`` or ``set`` objects in ``suffixes`` in :func:`merge` (:issue:`34810`)
286
290
- Enforced disallowing :func:`merge` to produce duplicated columns through the ``suffixes`` keyword and already existing columns (:issue:`22818`)
287
291
- Enforced disallowing using :func:`merge` or :func:`join` on a different number of levels (:issue:`34862`)
0 commit comments