ManimCommunity / manim_editor

Web Presenter for Mathematical Animations using Manim.
https://docs.editor.manim.community
MIT License
257 stars 12 forks source link

Update manim requirement to `>=0.13.1` from `^0.13.1` #86

Closed hydrobeam closed 2 years ago

hydrobeam commented 2 years ago

When trying to use manim-editor with manim v0.14.0, this error would come up:

manim-editor 0.3.8 requires manim<0.14.0,>=0.13.1, but you have manim 0.14.0 which is incompatible.

This is because of the ^ before the manim version, which restricted the version a bit too much. I've changed this to a >= to include future versions too.

https://python-poetry.org/docs/dependency-specification/#caret-requirements

christopher-besch commented 2 years ago

Thanks a lot for the efforts, @hydrobeam!