We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2468edd commit 007379dCopy full SHA for 007379d
.circleci/config.yml
@@ -383,13 +383,15 @@ jobs:
383
name: make doc
384
command: |
385
cd doc
386
- source .venv/bin/activate
+ python -m venv venv
387
+ source venv/bin/activate
388
+ pip install -r requirements.txt
389
# For the API doc, we need to use the local version of plotly
390
# since we are tweaking the source because of
391
# graph_objs/graph_objects
- uv pip uninstall plotly
392
+ pip uninstall -y plotly
393
cd ..
- uv pip install -e .
394
+ pip install -e .
395
396
cd apidoc
397
make html
0 commit comments