diff --git a/.circleci/config.yml b/.circleci/config.yml index 914b509e2..3387d6ddd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,13 +26,12 @@ jobs: - run: name: Install dependencies (dash) command: | - git clone git@github.com:plotly/dash.git - git clone git@github.com:plotly/dash-html-components.git - git clone git@github.com:plotly/dash-renderer.git + git clone --depth 1 git@github.com:plotly/dash.git dash-main + git clone --depth 1 git@github.com:plotly/dash-html-components.git . venv/bin/activate - pip install -e ./dash --quiet + pip install -e ./dash-main --quiet cd dash-html-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 ../.. - run: name: Build command: |