-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Pandas 2 compability: Fix a bug regarding timedelta64[ms] representation #4102 #4103
Conversation
@nicolaskruchten As Pandas 2 is already in the RC phase with a final release expected in the next weeks, it would be nice to see this in the next release. The change is backwards compatible. |
Thanks @kaibir - and @aberres I agree, would be great to get this in ASAP, and we'll be working to make a release in the next day or two. What I'd love to do before we merge this though is add a test job (or two I guess, get both |
@alexcjohnson We can give it a try. As I see things, the currently used images were deprecated, and there is now As Pandas happily works with 3.9 (the newest Python version checked right now), maybe we should start adding another |
cfd8d09
to
ca4be23
Compare
"float16", | ||
# "float16", |
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.
@alexcjohnson Python 2.0 forbids creating float16 indxes:
The easiest thing to do would be to drop this line here.
@@ -0,0 +1,21 @@ | |||
requests==2.25.1 | |||
tenacity==6.2.0 | |||
pandas==2.0.0rc0 |
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.
@kaibir We could bump this to the RC1 now.
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.
Have updated it. @aberres
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.
Bumped to 2.0.0 as there is the new pandas release since yesterday.
beb319a
to
129c717
Compare
@alexcjohnson Friendly ping. Anything we can do to get this 🚀? Pandas 2 is out since yesterday. |
@@ -102,7 +102,8 @@ def plot(data_frame, kind, **kwargs): | |||
if kind == "line": | |||
return line(data_frame, **kwargs) | |||
if kind == "area": | |||
return area(data_frame, **kwargs) | |||
new_kwargs = {k: kwargs[k] for k in kwargs if k not in ["stacked"]} |
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.
Maybe a question for @nicolaskruchten as much as for you @kaibir - since there are already other examples of these exclusions in other kind
s, but how do we know what needs to be excluded?
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.
It raised in a test 🙈
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.
yeah in principle the Pandas team isn't meant to add kwargs or mess with that API much any more but if/when they do (by e.g. adding upstream kwargs) then our tests will fail.
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.
Thanks for the quick release @LiamConnors @alexcjohnson. I think #4145 should also be solved by this. |
Code PR
plotly.graph_objects
, my modifications concern thecodegen
files and not generated files.modified existing tests.
new tutorial notebook (please see the doc checklist as well).
Close #4102