-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Ipyplotly test fixes #974
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
Ipyplotly test fixes #974
Conversation
New codegen logic in codegen/ New datatype classes generated into plotly/datatypes/ (These are gitignored) New validator classes generated into plotly/validators/ (These are gitignored) Code generation in update_graph_objs.py modified to map Figure, Layout, and Trace types to new plotly/datatypes/ classes. All other classes mapped to raw dicts/lists.
It's now possible to execute a fair amount of legacy graph construction and plotting code
TODO: add support for datetime arrays in validation and in widget serialization
Added js/ directory containing front-end widget library Added graph_objs.FigureWidget class that maps to datatypes.FigureWidget
These are mostly just for discussion during the WIP integration process.
@chriddyp @jmmease |
@@ -0,0 +1,27 @@ | |||
*.egg-info/ |
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.
@Kully - It looks like you committed a lot of extra stuff, like this ipyplotly
folder. Was that intentional? If not, could you rebase and open up a new PR?
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.
I highly recommend using a git client like GitHub desktop https://desktop.github.com/ to make your commits - it makes a lot easier to view what you will commit before committing it, as well as organizing your commits to only include certain files and line numbers
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 was intentional. ipyplotly
can't be located without the folder in ploty.py
Also, could you make the PR against the original PR instead of |
Closing in favor of #975 |
Attempting to fix minor test failures in #942