diff --git a/.circleci/config.yml b/.circleci/config.yml index 900934bc..fa3d8a79 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,14 +29,13 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git - git clone git@github.com:plotly/dash-renderer.git - git clone git@github.com:plotly/dash-core-components.git - git clone git@github.com:plotly/dash-table.git + git clone --depth 1 git@github.com:plotly/dash.git dash-main + git clone --depth 1 git@github.com:plotly/dash-core-components.git + git clone --depth 1 git@github.com:plotly/dash-table.git . venv/bin/activate - pip install -e ./dash --quiet + pip install -e ./dash-main --quiet cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd .. - cd dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd .. + cd dash-main/dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd ../.. cd dash-table && npm install --ignore-scripts && npm run build && pip install -e . && cd .. - run: