Commit
·
efa7ace
1
Parent(s):
e839d4d
pin dependency versions and rever plotly version to fix render
Browse files- Makefile +4 -6
- index.html +0 -0
- notebook.ipynb +0 -0
Makefile
CHANGED
@@ -4,11 +4,9 @@ setup:
|
|
4 |
pip install -r requirements.txt
|
5 |
|
6 |
build_html:
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
. .venv/bin/activate && \
|
11 |
-
jupyter nbconvert --to html --execute --output index --template classic notebook.ipynb
|
12 |
|
13 |
run:
|
14 |
-
. .venv/bin/activate && jupyter notebook
|
|
|
4 |
pip install -r requirements.txt
|
5 |
|
6 |
build_html:
|
7 |
+
python -m venv .venv && \
|
8 |
+
jupyter nbconvert --execute notebook.ipynb --to notebook --inplace --ExecutePreprocessor.timeout=-1 && \
|
9 |
+
jupyter nbconvert --to html --output index --template classic notebook.ipynb
|
|
|
|
|
10 |
|
11 |
run:
|
12 |
+
. .venv/bin/activate && jupyter notebook
|
index.html
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
notebook.ipynb
CHANGED
The diff for this file is too large to render.
See raw diff
|
|