-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Enforce silent downcasting deprecation #57328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
# Conflicts: # pandas/core/internals/blocks.py
# Conflicts: # doc/source/whatsnew/v3.0.0.rst
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A reminder that we'll need to deprecate future.no_silent_downcasting
. Could you open a follow up issue?
Thanks @phofl |
@@ -106,6 +106,7 @@ Removal of prior version deprecations/changes | |||
- :func:`read_excel`, :func:`read_json`, :func:`read_html`, and :func:`read_xml` no longer accept raw string or byte representation of the data. That type of data must be wrapped in a :py:class:`StringIO` or :py:class:`BytesIO` (:issue:`53767`) | |||
- All arguments except the first ``path``-like argument in IO writers are now keyword only (:issue:`54229`) | |||
- Changed the default value of ``observed`` in :meth:`DataFrame.groupby` and :meth:`Series.groupby` to ``True`` (:issue:`51811`) | |||
- Enforced silent-downcasting deprecation for :ref:`all relevant methods <whatsnew_220.silent_downcasting>` (:issue:`54710`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like the option still exists in config_init and it is set in 3 tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The option will need to be deprecated in a follow up, but it can be removed in those tests
* Enforce silent downcasting deprecation * Update * Update * Add whatsnew * Fixup docstrings * Update
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.