@@ -197,6 +197,13 @@ Removal of prior version deprecations/changes
197
197
- Disallow passing non-round floats to :class: `Timestamp ` with ``unit="M" `` or ``unit="Y" `` (:issue: `47266 `)
198
198
- Remove keywords ``convert_float `` and ``mangle_dupe_cols `` from :func: `read_excel ` (:issue: `41176 `)
199
199
- Disallow passing non-keyword arguments to :func: `read_excel ` except ``io `` and ``sheet_name `` (:issue: `34418 `)
200
+ - Disallow passing non-keyword arguments to :meth: `DataFrame.set_index ` except ``keys `` (:issue: `41495 `)
201
+ - Disallow passing non-keyword arguments to :meth: `Resampler.interpolate ` except ``method `` (:issue: `41699 `)
202
+ - Disallow passing non-keyword arguments to :meth: `DataFrame.reset_index ` and :meth: `Series.reset_index ` except ``level `` (:issue: `41496 `)
203
+ - Disallow passing non-keyword arguments to :meth: `DataFrame.dropna ` and :meth: `Series.dropna ` (:issue: `41504 `)
204
+ - Disallow passing non-keyword arguments to :meth: `ExtensionArray.argsort ` (:issue: `46134 `)
205
+ - Disallow passing non-keyword arguments to :meth: `Categorical.sort_values ` (:issue: `47618 `)
206
+ - Disallow passing non-keyword arguments to :meth: `Index.drop_duplicates ` and :meth: `Series.drop_duplicates ` (:issue: `41485 `)
200
207
- Disallow passing non-keyword arguments to :meth: `DataFrame.drop_duplicates ` except for ``subset `` (:issue: `41485 `)
201
208
- Disallow passing non-keyword arguments to :meth: `DataFrame.sort_index ` and :meth: `Series.sort_index ` (:issue: `41506 `)
202
209
- Disallow passing non-keyword arguments to :meth: `DataFrame.interpolate ` and :meth: `Series.interpolate ` except for ``method `` (:issue: `41510 `)
@@ -209,6 +216,9 @@ Removal of prior version deprecations/changes
209
216
- Disallow passing non-keyword arguments to :func: `read_json ` except for ``path_or_buf `` (:issue: `27573 `)
210
217
- Disallow passing non-keyword arguments to :func: `read_sas ` except for ``filepath_or_buffer `` (:issue: `47154 `)
211
218
- Disallow passing non-keyword arguments to :func: `read_stata ` except for ``filepath_or_buffer `` (:issue: `48128 `)
219
+ - Disallow passing non-keyword arguments to :func: `read_csv ` except ``filepath_or_buffer `` (:issue: `41485 `)
220
+ - Disallow passing non-keyword arguments to :func: `read_table ` except ``filepath_or_buffer `` (:issue: `41485 `)
221
+ - Disallow passing non-keyword arguments to :func: `read_fwf ` except ``filepath_or_buffer `` (:issue: `44710 `)
212
222
- Disallow passing non-keyword arguments to :func: `read_xml ` except for ``path_or_buffer `` (:issue: `45133 `)
213
223
- Disallow passing non-keyword arguments to :meth: `Series.mask ` and :meth: `DataFrame.mask ` except ``cond `` and ``other `` (:issue: `41580 `)
214
224
- Disallow passing non-keyword arguments to :meth: `DataFrame.to_stata ` except for ``path `` (:issue: `48128 `)
0 commit comments