Updated to include particle filter chapter.

This commit is contained in:
Roger Labbe
2015-07-04 21:16:04 -07:00
parent f8896bbb80
commit 0a4c54a56a
2 changed files with 2 additions and 2 deletions

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,20]
min_version = [0,0,21]
v = filterpy.__version__
tokens = v.split('.')
for i,v in enumerate(tokens):