Skip to content

Commit 1149420

Browse files
committed
fix: import errors...
1 parent 51ca828 commit 1149420

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/setup-python@v2
2323

2424
- name: Install cibuildwheel
25-
run: python -m pip install -U setuptools wheel pip
25+
run: python -m pip install -U setuptools wheel pip .
2626

2727
- name: Build wheels
2828
run: python setup.py sdist

manim_slides/slide.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66

77
from tqdm import tqdm
88

9-
try:
10-
from .manim import Scene, ThreeDScene, config, logger
11-
except ImportError:
12-
Scene = ThreeDScene = config = logger = None
13-
# TODO: manage both manim and manimgl
9+
from manim import Scene, ThreeDScene, config, logger
1410

1511
try: # For manim<v0.16.0.post0
1612
from manim.constants import FFMPEG_BIN as ffmpeg_executable

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"click>=8.0",
3131
"click-default-group>=1.2",
3232
"numpy>=1.19.3",
33+
"manim",
3334
"pydantic>=1.9.1",
3435
"opencv-python>=4.6",
3536
],

0 commit comments

Comments
 (0)