-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Miscellaneous Scene-Caching Optimisations and Bugfixes. #315
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
Conversation
|
Could someone run tests locally on this PR ? In GH actions, there is a weird error message |
MacOS Catalina, The Logging tests fails because no log is created, for some reason. Not sure why the others fail. |
Mostly about copys handling.
|
Thanks so much @Aathish04 UH ? tests are not working on windows but on Linux ?! |
manim/__main__.py
Outdated
| @@ -11 +11 @@ | |||
| from . import constants, logger, console, file_writer_config | |||
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.
Comment: after this config system is refactored, we should come back here and use tempconfig
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.
What do you mean ? I don't see how tempconfig could be used here. It's not, well, a temporary config (in my mind)
tests/test_hashing.py
Outdated
| def __init__(self, a, b): | ||
| self.a = 2 | ||
| self.b = 3.0 | ||
| self.c = [1, 2, "test", ["nested list"]] | ||
| self.d = {2: 3, "2": "salut"} | ||
|
|
||
| o = Obj(1, 2) |
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.
Nitpick: the init arguments a and b are not used. Was this intentional?
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.
Yes, my mistake. Thanks !
Co-authored-by: Leo Torres <[email protected]>
Co-authored-by: Pg Biel <[email protected]>
|
@PgBiel I adressed all your requests :D |
Co-authored-by: Pg Biel <[email protected]>
Co-authored-by: Pg Biel <[email protected]>
|
@PgBiel I removed all the semi colons, Captain. Feel free to review again. |
MARKED AS DRAFT BUT THE PR IS DONE.
As we don't have yet tests for videos, I prefer not to merge this right now and wait to have tests. I make this PR if anyone was annoyed by #302, so one can use this branch.
List of Changes (UP TO DATE)
Fixes:
-is passed as the filename.Optimisations:
Explanation for Changes
Testing Status
Acknowledgement