We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With pandas 1.4 or later I am getting deprecations warnings from figure_resampler.py
pandas.UInt64Index is deprecated and will be removed from pandas in a future version. Use pandas.Index with the appropriate dtype instead.
The text was updated successfully, but these errors were encountered:
We check whether the index datatype is integer on this line:
plotly-resampler/plotly_resampler/figure_resampler.py
Line 189 in 1c309d6
Appearantly both pd.Int64Index and pd.UInt64Index are deprecated since pandas v1.4.0 (and will be removed in pandas v2.0).
pd.Int64Index
pd.UInt64Index
pandas-dev/pandas#41153
So, in order to comply with pandas its updated index handling, we should check whether the index is a pd.NumericIndex of integer dtype.
pd.NumericIndex
dtype
Sorry, something went wrong.
jvdd
No branches or pull requests
With pandas 1.4 or later I am getting deprecations warnings from figure_resampler.py
The text was updated successfully, but these errors were encountered: