Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
python -m venv venv || virtualenv venv
. venv/bin/activate
pip install -r requirements.txt --quiet
git clone --depth 1 git@github.com:plotly/dash.git dash-main
pip install -e ./dash-main --quiet

- run:
name: Build
Expand Down Expand Up @@ -105,6 +107,8 @@ jobs:
python -m venv venv || virtualenv venv
. venv/bin/activate
pip install -r requirements.txt --quiet
git clone --depth 1 git@github.com:plotly/dash.git dash-main
pip install -e ./dash-main --quiet

- run:
name: Run tests
Expand Down Expand Up @@ -168,7 +172,7 @@ jobs:
name: Install requirements
command: |
. venv/bin/activate
pip install -r requirements-base.txt --quiet
pip install -r requirements.txt --quiet

- run:
name: Run eslint
Expand Down Expand Up @@ -200,21 +204,15 @@ jobs:
sudo pip install --upgrade virtualenv
python -m venv venv || virtualenv venv
. venv/bin/activate
pip install -r requirements-base.txt --quiet
pip install -r requirements.txt --quiet
npm install

- 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-html-components.git
. venv/bin/activate
pip install -e ./dash --quiet
cd dash-renderer && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
cd dash-html-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
git clone --depth 1 git@github.com:plotly/dash.git dash-main
pip install -e ./dash-main --quiet

- run:
name: Install test requirements
Expand Down
56 changes: 0 additions & 56 deletions requirements-base.txt

This file was deleted.

4 changes: 0 additions & 4 deletions requirements-v0.txt

This file was deleted.

58 changes: 56 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,56 @@
-r requirements-base.txt
-r requirements-v0.txt
appdirs==1.4.3
appnope==0.1.0
astroid==2.0.4
attrs==18.2.0
backcall==0.1.0
black==18.6b4
certifi==2018.8.24
chardet==3.0.4
chromedriver-binary==2.41.0
click==6.7
decorator==4.3.0
flake8==3.5.0
Flask==1.0.2
Flask-Compress==1.4.0
gunicorn==19.9.0
idna==2.7
ipdb==0.11
ipython==6.5.0
ipython-genutils==0.2.0
isort==4.3.4
itsdangerous==0.24
jedi==0.12.1
Jinja2==2.10
jsonschema==2.6.0
jupyter-core==4.4.0
lazy-object-proxy==1.3.1
MarkupSafe==1.0
mccabe==0.6.1
nbformat==4.4.0
numpy==1.15.1
pandas==0.24.1
parso==0.3.1
percy==2.0.0
pexpect==4.6.0
pickleshare==0.7.4
plotly==3.2.1
prompt-toolkit==1.0.15
ptyprocess==0.6.0
pycodestyle==2.3.1
pyflakes==1.6.0
Pygments==2.2.0
pylint==2.1.1
python-dateutil==2.7.3
pytz==2018.5
requests==2.20.0
retrying==1.3.3
selenium==3.14.0
simplegeneric==0.8.1
six==1.11.0
toml==0.9.6
traitlets==4.3.2
typed-ast==1.1.0
urllib3==1.23
wcwidth==0.1.7
Werkzeug==0.14.1
wrapt==1.10.11