Final updates before merge to trunk.

Updated to work with FilterPy 0.0.19.
This commit is contained in:
Roger Labbe 2015-06-08 19:21:18 -07:00
parent 88d200b9a8
commit 3c3a5e5bf6
3 changed files with 106 additions and 286 deletions

8
.gitignore vendored
View File

@ -4,4 +4,10 @@ __pycache__
*.pyc
short.pdf
11*
Kalman_and_Bayesian_Filters_in_Python.pdf
*.aux
*.out
book.ipynb
*.tex
*.toc
Kalman_and_Bayesian_Filters_in_Python.pdf
book_files

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@ sys.path.insert(0,'./code') # allow us to import book_format
def test_filterpy_version():
import filterpy
min_version = [0,0,18]
min_version = [0,0,19]
v = filterpy.__version__
tokens = v.split('.')
for i,v in enumerate(tokens):