mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
9 lines
195 B
Python
9 lines
195 B
Python
from __future__ import annotations
|
|
|
|
import pkg_resources
|
|
|
|
from manim import __name__, __version__
|
|
|
|
|
|
def test_version():
|
|
assert __version__ == pkg_resources.get_distribution(__name__).version
|