-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Follow-up #15954: public API for Styler #16009
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
Comments
Oh I forgot we did import * from pandas.io I think we'll just del it from the top-level namespace. I can add a shim if needed. Will get to this today. |
I would also think about whether we would want to put this in either |
I think ok to move |
This is now changed in the API docs to But, this is maybe a bit too nested? For the other publics things in io, they are typically at the (BTW, it is a bit longer but I actually found |
From the top-level to pandas.io.formats.style.Styler, which is a bit wordy but I was having circular-import issues at pandas.io.formats. I think that's ok since people won't really be using this interactively. Closes pandas-dev#16009
* DOC/API: Move Styler import From the top-level to pandas.io.formats.style.Styler, which is a bit wordy but I was having circular-import issues at pandas.io.formats. I think that's ok since people won't really be using this interactively. Closes #16009 * Added deprecation warning and shim
* DOC/API: Move Styler import From the top-level to pandas.io.formats.style.Styler, which is a bit wordy but I was having circular-import issues at pandas.io.formats. I think that's ok since people won't really be using this interactively. Closes pandas-dev#16009 * Added deprecation warning and shim
As a reminder that we need to address this for 0.20, follow-up for #15954
pandas.io.api.Styler
, but it is in practice also added to top-level namespace (pandas.Styler
), while the API docs still use it aspandas.formats.style.Styler
)pandas.formats.style.Styler
to deprecate? (not sure if many people would already used this object directly instead of throughdf.style
)The text was updated successfully, but these errors were encountered: