Skip to content

Commit 007379d

Browse files
committed
use pip
1 parent 2468edd commit 007379d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,13 +383,15 @@ jobs:
383383
name: make doc
384384
command: |
385385
cd doc
386-
source .venv/bin/activate
386+
python -m venv venv
387+
source venv/bin/activate
388+
pip install -r requirements.txt
387389
# For the API doc, we need to use the local version of plotly
388390
# since we are tweaking the source because of
389391
# graph_objs/graph_objects
390-
uv pip uninstall plotly
392+
pip uninstall -y plotly
391393
cd ..
392-
uv pip install -e .
394+
pip install -e .
393395
cd doc
394396
cd apidoc
395397
make html

0 commit comments

Comments
 (0)