Skip to content

Commit 8e87e94

Browse files
committed
Fix lots of build issues
1 parent b21ff4a commit 8e87e94

11 files changed

+9
-31
lines changed

‎doc/Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ clean:
5252
rm -rf $(BUILDDIR)/*
5353

5454
apidoc: $(GENERATED_FILES)
55-
PYTHONPATH=$(PWD)/..:$(PYTHONPATH) sphinx-apidoc ../src -o source/ -f -T
55+
PYTHONPATH=$(PWD)/..:$(PYTHONPATH) sphinx-apidoc ../example_code -o source/ -f -T
56+
PYTHONPATH=$(PWD)/..:$(PYTHONPATH) sphinx-apidoc ../fibonacci -o source/ -f -T
5657

5758
#webgit:
5859
# git clone git@github.com:finite-element/finite-element.github.io.git webgit
5960

60-
html: # apidoc # webgit latexpdf
61+
html: apidoc # webgit latexpdf
6162
rm webgit/* || true
6263
rm -rf $(BUILDDIR)/doctrees || true
6364
rm $(BUILDDIR)/html || rm -rf $(BUILDDIR)/html

‎doc/source/5_exceptions.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -244,17 +244,17 @@ the :term:`call stack`. It is also sometimes called the
244244
:term:`execution stack` or :term:`interpreter stack`.
245245

246246
The first frame on the stack contains the execution context for the
247-
Python script that the user ran, or for the iPython shell or Jupyter
248-
notebook the user was typing into in the case where the user worked
249-
interactively. When a function is called, the Python interpreter
247+
Python script that the user ran or, in the case where the user worked
248+
interactively, for the iPython shell or Jupyter notebook into which
249+
the user was typing. When a function is called, the Python interpreter
250250
creates a new stack frame containing the local execution context of
251251
that function and pushes it onto the call stack. When that function
252252
returns, its stack frame is popped from the call stack, leaving the
253253
interpreter to continue at the next instruction in the stack frame
254254
from which the function was called. Because functions can call
255255
functions which call functions and so on in a nearly limitless
256256
sequence, there can be a number of stack frames in existence at any
257-
time.
257+
time.
258258

259259
.. note::
260260

‎doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211

212212
# -- Options for LaTeX output ---------------------------------------------
213213

214-
latex_engine = 'luatex'
214+
latex_engine = 'lualatex'
215215

216216
latex_elements = {
217217
# The paper size ('letterpaper' or 'a4paper').

‎doc/source/hello.rst

-7
This file was deleted.

‎doc/source/polynomial.rst

-7
This file was deleted.

‎doc/source/syntax_error.rst

-7
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
author="David Ham",
88
author_email="david.ham@imperial.ac.uk",
99
#url="https://finite-element.github.io/",
10-
packages=["fibonacci"],
10+
packages=["fibonacci", "example_code"],
1111
scripts=glob('scripts/*'))

‎src/syntax_error.py

-2
This file was deleted.

0 commit comments

Comments
 (0)