-
Notifications
You must be signed in to change notification settings - Fork 376
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
Restructure python codegen: move codegen to rerun and old log APIs to log_deprecated #3374
Conversation
…lready have the bytemuck dep
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.
Not technically a new file. Git is just confused because there's a new components/__init__.py
in its place.
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.
Not technically a new file. Git is just confused because there's a new components/transform3d.py
in its place.
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.
based
What
Moves:
rerun.log.error_utils
->rerun.error_utils
rerun.log.*
->rerun.log_deprecated.*
rerun.components.*
->rerun.components_deprecated.*
_rerun2.*
->rerun.*
Note, this required making the following changes in a few examples:
rr.log.rects.RectFormat
->rr.RectFormat
rr.log.text.LoggingHandler
->rr.LoggingHandler
rr.log.annotation.AnnotationInfo
->rr.AnnotationInfo
Additionally, all of the AffixFuzzer is now generated into its own module in
rerun_py.tests.test_types
Does not yet move the new logging APIs out of
experimental
, but all of that can be managed inrerun.__init__
now.Checklist