Skip to content

Commit 634c787

Browse files
committed
Add pip install editable
1 parent 2ef2559 commit 634c787

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,8 @@ jobs:
328328
python -m venv venv
329329
. venv/bin/activate
330330
pip install --upgrade pip wheel
331-
pip install -r ./test_requirements/requirements_38_core.txt black inflect
331+
pip install -e .
332+
pip install -r ./test_requirements/requirements_311_core.txt black inflect
332333
pip install jupyterlab
333334
- run:
334335
name: Update plotly.js to dev

packages/python/plotly/commands.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ def update_plotlyjs_dev():
299299
update_schema_bundle_from_master()
300300
run_codegen()
301301

302+
302303
if __name__ == "__main__":
303304
if "updateplotlyjsdev" in sys.argv:
304305
update_plotlyjs_dev()

0 commit comments

Comments
 (0)