We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca1423e commit df28892Copy full SHA for df28892
1 file changed
.github/workflows/build-and-deploy.yml
@@ -57,9 +57,14 @@ jobs:
57
58
- name: Install Python dependencies
59
run: |
60
- pip install setuptools manim manim-voiceover[gtts] invoke python-graphblas \
+ pip install setuptools
61
+ python -c "import pkg_resources; print('pkg_resources version:', pkg_resources.__version__)"
62
+ pip install manim manim-voiceover[gtts] invoke python-graphblas \
63
networkx matplotlib python-dotenv \
64
mkdocs mkdocs-material pymdown-extensions
65
+ # Reinstall setuptools in case dependency resolution removed it
66
+ pip install --force-reinstall setuptools
67
+ python -c "import pkg_resources; print('pkg_resources OK after reinstall')"
68
if [ "${{ inputs.prod }}" = "true" ]; then
69
pip install 'elevenlabs>=0.2.27,<0.3.0'
70
fi
0 commit comments