File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Original file line number Diff line number Diff line change @@ -440,6 +440,15 @@ jobs:
440
440
git push --force git@github.com:plotly/plotly.py-docs.git master:built
441
441
rm -rf .git
442
442
cd ../..
443
+ cd build/ipynb
444
+ git init
445
+ git config user.name plotlydocbot
446
+ git config user.email accounts@plot.ly
447
+ git add *
448
+ git commit -m "build of https://github.com/plotly/plotly.py/commit/${CIRCLE_SHA1}"
449
+ git push --force git@github.com:plotly/plotly.py-docs.git master:built_ipynb
450
+ rm -rf .git
451
+ cd ../..
443
452
fi
444
453
tar -zcf build/html.tgz build/html
445
454
rm -rf build/html build/ipynb
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ $(HTML_DIR)/2019-07-03-%.html: $(IPYNB_DIR)/%.ipynb
40
40
@jupyter nbconvert $< --to html --template nb.tpl \
41
41
--ExecutePreprocessor.timeout=600\
42
42
--output-dir $(HTML_DIR ) --output 2019-07-03-$* .html \
43
- --execute > $(FAIL_DIR ) /$* 2>&1 && rm -f $(FAIL_DIR ) /$*
43
+ --execute 2>&1 | sed -r " s/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g " > $(FAIL_DIR ) /$* && rm -f $(FAIL_DIR ) /$*
44
44
45
45
46
46
$(REDIR_DIR ) /2019-07-03-redirect-next-% .html : $(IPYNB_DIR ) /% .ipynb
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ Plotly Express density contours can be [continuously-colored](/python/colorscale
76
76
import plotly.express as px
77
77
df = px.data.tips()
78
78
79
- fig = px.density_contour (df, x = " total_bill" , y = " tip" )
79
+ fig = px.density_contourfff (df, x = " total_bill" , y = " tip" )
80
80
fig.update_traces(contours_coloring = " fill" , contours_showlabels = True )
81
81
fig.show()
82
82
```
You can’t perform that action at this time.
0 commit comments