Skip to content

Commit 6c4f4ca

Browse files
authored
v0.10.7 release, Merge pull request #97 from chrisjsewell/develop
Add sphinx options to add buttons for toggling all input/output cells
2 parents f9f82b5 + 02d206f commit 6c4f4ca

20 files changed

+820
-593
lines changed

conda_dev_env.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ dependencies:
4747
- jupyter
4848
- matplotlib
4949
- pandas
50+
- recommonmark
5051
- sympy <1.3

docs/Makefile

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,24 @@ endif
1515
# Internal variables.
1616
PAPEROPT_a4 = -D latex_paper_size=a4
1717
PAPEROPT_letter = -D latex_paper_size=letter
18-
ALLSPHINXOPTS = -n -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
18+
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
1919
# the i18n builder cannot share the environment and doctrees with the others
2020
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
2121

2222
.PHONY: all help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext customdefault
2323

24-
## Runs with nitty-pick and converting warnings into errors to
24+
## Runs with nitty-pick and converting warnings into errors to
2525
## make sure the documentation is properly written
2626
customdefault:
2727
$(SPHINXBUILD) -b html -nW $(ALLSPHINXOPTS) $(BUILDDIR)/html
28-
29-
all: html
30-
31-
clean:
32-
rm -r $(BUILDDIR)
33-
34-
html:
35-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
3628
@echo
3729
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
3830

31+
# same as customdefault, but echo's warnings without raising them as errors
32+
debug:
33+
$(SPHINXBUILD) -b html -n $(ALLSPHINXOPTS) $(BUILDDIR)/html
34+
@echo
35+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
3936

40-
view:
41-
xdg-open $(BUILDDIR)/html/index.html
37+
clean:
38+
rm -r $(BUILDDIR)

docs/source/api/ipypublish.schema.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)