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
DEPR: Positional arguments in to_sql except name (pandas-dev#54397)
* Updated method header and whatsnew file
* Updated unit tests to use keyword argument for con parameter.
* Updating unit tests and implementation.
* Updated documentation and unit tests.
* Updating documentation and fixing unit tests.
* Updating documentation.
* Updating documentation and fixing failing unit tests.
* Updating documentation and unit tests.
* Updating implementation based on reviewer feedback.
* Updating implementation to allow 'self' to be a positional arg.
* Deprecating con positional arg in new test case.
* Fixing typo
* Fixing typo
- Deprecated the use of non-supported datetime64 and timedelta64 resolutions with :func:`pandas.array`. Supported resolutions are: "s", "ms", "us", "ns" resolutions (:issue:`53058`)
601
602
- Deprecated values "pad", "ffill", "bfill", "backfill" for :meth:`Series.interpolate` and :meth:`DataFrame.interpolate`, use ``obj.ffill()`` or ``obj.bfill()`` instead (:issue:`53581`)
602
603
- Deprecated the behavior of :meth:`Index.argmax`, :meth:`Index.argmin`, :meth:`Series.argmax`, :meth:`Series.argmin` with either all-NAs and skipna=True or any-NAs and skipna=False returning -1; in a future version this will raise ``ValueError`` (:issue:`33941`, :issue:`33942`)
604
+
- Deprecated allowing non-keyword arguments in :meth:`DataFrame.to_sql` except ``name``. (:issue:`54229`)
0 commit comments