mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-29 10:02:11 +00:00
6 lines
158 B
Python
6 lines
158 B
Python
from manim import __name__, __version__
|
|
import pkg_resources
|
|
|
|
|
|
def test_version():
|
|
assert __version__ == pkg_resources.get_distribution(__name__).version
|