-
Notifications
You must be signed in to change notification settings - Fork 3
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
Support pandas 3.0 #68
Comments
many thanks for the report! |
I did some digging: numpy/numpy#24889 (comment) I will keep this issue open until mapply + pandas v3 compatibility is confirmed, but I think no further action is required here. |
nice research @ddelange! is there a way to hide the warnings in the short term? e.g., something like this: import warnings
# Filter out specific deprecation warnings
warnings.filterwarnings("ignore", message=".*Series.swapaxes is deprecated and will be removed in a future version.*")
warnings.filterwarnings("ignore", message=".*DataFrame.swapaxes is deprecated and will be removed in a future version.*") |
Released 0.1.25 |
quick update: tried
and all tests (series, dataframe, groupby) will start failing due to various reasons. see for instance numpy/numpy#24889 (comment) |
The use of
array_split
from NumPy is now reporting as deprecated.mapply/src/mapply/mapply.py
Line 151 in d15007b
With the latest numpy, it gives warnings, i.e.
Some more details here: numpy/numpy#23217 and numpy/numpy#24889, in particular this comment: numpy/numpy#24889 (comment) for a proposed resolution.
It's unclear if pandas (or numpy) may address this at some point?
The text was updated successfully, but these errors were encountered: