Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cfc578c

Browse files
committed
use local plotly also in doc-prod
1 parent 251cd9b commit cfc578c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.circleci/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,15 @@ jobs:
464464
command: |
465465
cd doc
466466
. venv/bin/activate
467+
# For the API doc, we need to use the local version of plotly
468+
# since we are tweaking the source because of
469+
# graph_objs/graph_objects
470+
if [ "${CIRCLE_BRANCH}" == "doc-prod" ]; then
471+
pip uninstall -y plotly
472+
cd ../packages/python/plotly
473+
pip install -e .
474+
cd ../../../doc
475+
fi
467476
cd apidoc
468477
make html
469478
if [ "${CIRCLE_BRANCH}" == "doc-prod" ]; then

0 commit comments

Comments
 (0)