-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Deprecated pandas.lib redirect messages #15936
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
xref #15909 is this issue about |
It is about all functions that are imported in Probably it is something like:
|
hmm, I think then will just turn off the I suppose putting deprecation warnings is ok here though. |
Eg |
yes aside from the ones you already have moved. |
Dask is making use of |
Ah, since this for compat with older pandas versions (before |
Currently, you get the following message when you try to access one of the
pandas.lib
functions:(apart from
infer_dtypes
, for which there is already another redirect).We shouldn't recommend to use
pandas._lib.lib
.For some there is a public alternative (like
Timestamp
,Timedelta
), others are probably just private and shouldn't have an alternative.We could list all of them as
removals
andmoved
inlib = _DeprecatedModule(..)
, but that will be a long list. Or we could just don't provide an alternative import path by default, and only include some specific ones for which there is an alternative.The text was updated successfully, but these errors were encountered: