Dataset Viewer
Auto-converted to Parquet Duplicate
number
int64
1
3.63k
content
stringlengths
4
240k
comments
sequence
3,627
Wrong colors on Cairo renderer : ## Description of bug / unexpected behavior <!-- Add a clear and concise description of the problem you encountered. --> Running the quickstart example in the wiki generates wrong colors (using Cairo renderer) ## Expected behavior <!-- Add a clear and concise description of what y...
[ "I cannot reproduce your problem... you should not need to use `renderer=cairo` since this is the default setting, but with and without everything renders just fine on my system... On the other hand I don't know your operating system, but if this was a general problem in Manim it would have been reported a long tim...
3,626
Bump cryptography from 42.0.0 to 42.0.2 : Bumps [cryptography](https://github.com/pyca/cryptography) from 42.0.0 to 42.0.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's changelog</a>.</em></p> <blockquote> <p>42.0.2 - 20...
[ "Superseded by #3629." ]
3,623
Ipython notebook mime type media embed changes : <!-- Thank you for contributing to Manim! Learn more about the process in our contributing guidelines: https://docs.manim.community/en/latest/contributing.html --> ## Overview: What does this pull request change? <!-- If there is more information than the PR title th...
[ "duplicate of #3618?" ]
3,621
Run `poetry lock --no-update` : After the merging of #3524 running `poetry install` I get a warning about `poetry.lock` being out of sync with `pyproject.toml`. The root cause stems from `mapbox-earcut` being removed in the PR mentioned above. This PR is basically just running `poetry lock --no-update`.
[]
3,617
"AttributeError: 'list' object has no attribute 'reshape'" when use OpenGL renderer to transform a math LaTeX formula to another : ## Description of bug / unexpected behavior <!-- Add a clear and concise description of the problem you encountered. --> My manim version is 0.18.0. I got `AttributeError: 'list' object ...
[ "I came here to look if anyone else has posted this—I found #3278 as the same thing as well. It prevents being able to use `Transform` on text Mobjects.\r\n\r\n@behackl put up a review that covers the same fix as you mention." ]
3,613
fix type hint of indication.py : <!-- Thank you for contributing to Manim! Learn more about the process in our contributing guidelines: https://docs.manim.community/en/latest/contributing.html --> ## Overview: What does this pull request change? <!-- If there is more information than the PR title that should be add...
[]
3,611
Fix error in Windows CI pipeline : see title. problem appears in recent runs, e.g. https://github.com/ManimCommunity/manim/actions/runs/7749104954/job/21132994064?pr=3429
[]
3,610
Problems with preparing metadata for skia-pathops : #### Preliminaries - [x] I have followed the latest version of the [installation instructions](https://docs.manim.community/en/stable/installation.html). - [x] I have checked the [installation FAQ](https://docs.manim.community/en/stable/faq/installation.htm...
[ "This is not an issue with manim itself, but with installing one of its dependencies, `skia-pathops`. There are prebuilt wheels for most OS/architecture combinations (see https://pypi.org/project/skia-pathops/0.7.4/#files), but it seems none are provided for your platform.\r\n\r\nYou can try and `pip install skia-p...
3,605
IndexError: list index out of range : from manim import * class GaussianElimination(Scene): def construct(self): # Define the augmented matrix matrix = [[1, 3, -2, 0, 2, 0], [2, 6, -5, -2, 4, -3], [0, 0, 5, 10, 0, 15], [2, 6, 0, 8, 4, 18...
[ "without analyzing your weirdly formatted code deeper (after putting it into executable form) I would say that something must be wrong in your Gauss elimination function:\r\n\r\n![image](https://github.com/ManimCommunity/manim/assets/8582807/483364d1-480b-4219-b45b-225ea428d407)\r\n", "Indeed, this tries to acces...
3,603
`align_to` misbehavior after `move_to` : If I align an object to another with `align_to`, then move it somewhere else with `move_to`, and finally re-align it to the same initial object with `align_to`, the last call has no effect. ```python a = Square() b = Circle().move_to(RIGHT*3) # so they're not on top of eac...
[ "I believe you need to supply us with more context, because the following code just works fine:\r\n\r\n```py\r\nclass align(Scene):\r\n def construct(self):\r\n a = Square()\r\n b = Circle().move_to(RIGHT*3) # so they're not on top of each other\r\n self.add(a,b)\r\n self.wait()\r\n ...
3,602
Getting error for dvisvgm : Hi everybody. ## Description of bug / unexpected behavior I just installed manim and tried making a little scene with it. It doesn't render. Here is my dvisvgm -l ```shell dvisvgm -l bgcolor background color special color complete support of color specials dvisvgm ...
[ "There have been issues with some previous versions of dvisvgm which are not caused by manim, since this is an external tool. Try to follow the suggestion and update your dvisvgm - I have version 3.1.2 and it works.\r\n\r\nhttps://dvisvgm.de/\r\n\r\nOn the other hand I have no experience with TiniTex either and wou...
3,601
The line of NumberLine disappears when applying a LaggedStart on its components : ## Description of bug / unexpected behavior When trying to use a LaggedStart animation - or Succession - to make a sequential rotation on the labels of a NumberLine, the drawn line of the NumberLine is - I guess visually - removed. ...
[ "yes, both `NumberLine()` and `Axes()` behave weirdly sometimes. There is something wrong with the organization of the submobjects.\r\nFor an animation like yours I anyway would recommend to use your own compound object rather than the `NumberLine`, and for the rotation of the whole structure I would use an updater...
3,599
Fix `get_arc_center()` returning reference of point : <!-- Thank you for contributing to Manim! Learn more about the process in our contributing guidelines: https://docs.manim.community/en/latest/contributing.html --> ## Overview: What does this pull request change? <!-- If there is more information than the PR tit...
[]
3,598
Add ref_class for `BooleanOperations` in Example Gallery : Adds the ref class `Difference` for the Boolean Operation in Example Scenes [https://manimce--3598.org.readthedocs.build/en/3598/examples.html#booleanoperations](https://manimce--3598.org.readthedocs.build/en/3598/examples.html#booleanoperations)
[]
3,596
Cannot render text normally : ## Description unexpected behavior Do not render text normally. ## Expected behavior Text is rendered normally. ## How to reproduce the issue ```py from manim import * class Video(Scene): def construct(self): text = Text("Some text here") self.play(Wr...
[ "can you try to render the scene without caching?\r\n`manim -pql --disable_caching filename.py scenename`", "No, it still does not work.\r\n\r\nHere's the output:\r\n```\r\nManim Community v0.18.0\r\n\r\n[01/28/24 09:52:48] INFO Caching disabled. ...
3,595
Revert vector type aliases to NumPy ndarrays : In the typing update #3484, the vector type aliases were redefined as unions between NumPy ndarrays and tuples, in an attempt to make them more consistent with the point type aliases. However, this caused the issue #3563. After some discussion, it was clarified that ...
[]
3,594
fix typo in value_tracker.py : <!-- Thank you for contributing to Manim! Learn more about the process in our contributing guidelines: https://docs.manim.community/en/latest/contributing.html --> ## Overview: What does this pull request change? <!-- If there is more information than the PR title that should be added...
[]
3,593
updated several packages (pillow, jupyterlab, notebook, jupyterlab-lsp, jinja2, gitpython) : Supersedes #3575, #3576, #3583, #3586, #3587, #3591.
[]
3,592
Fix typehint of :attr:`InternalPoint2D_Array` : Fix some typos in the docstring of `InternalPoint2D_Array`
[]
3,591
Bump pillow from 10.1.0 to 10.2.0 : Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.1.0 to 10.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-pillow/Pillow/releases">pillow's releases</a>.</em></p> <blockquote> <h2>10.2.0</h2> <p><a href="https://pi...
[ "Looks like pillow is up-to-date now, so this is no longer needed." ]
3,587
Bump jupyterlab from 4.0.9 to 4.0.11 : Bumps [jupyterlab](https://github.com/jupyterlab/jupyterlab) from 4.0.9 to 4.0.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jupyterlab/jupyterlab/releases">jupyterlab's releases</a>.</em></p> <blockquote> <h2>v4.0.11</h2> <h2>4.0.1...
[ "Looks like jupyterlab is up-to-date now, so this is no longer needed." ]
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
20