mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
* Format imports using Isort. Add a check for pull requests. Signed-off-by: Naveen M K <naveen@syrusdark.website> * CI: update check's name
7 lines
159 B
Python
7 lines
159 B
Python
import pkg_resources
|
|
|
|
from manim import __name__, __version__
|
|
|
|
|
|
def test_version():
|
|
assert __version__ == pkg_resources.get_distribution(__name__).version
|