MAINT: Upgrade Logbook version

Upgrade Logbook to 0.12.5. This required changing a usage of
`logbook.NullHandler()` which passed `bubble=True`, since
`NullHandler` no longer supports the `bubble` argument.
This commit is contained in:
Jonathan Kamens
2016-02-16 13:32:25 -05:00
parent d5bd2a9fb8
commit 11465d907d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
pip>=7.1.0
# Logging
Logbook==0.10.0
Logbook==0.12.5
# Scientific Libraries
+1 -1
View File
@@ -9,7 +9,7 @@ from zipline.utils.factory import load_from_yahoo
from zipline.finance import commission
zipline_logging = logbook.NestedSetup([
logbook.NullHandler(level=logbook.DEBUG, bubble=True),
logbook.NullHandler(),
logbook.StreamHandler(sys.stdout, level=logbook.INFO),
logbook.StreamHandler(sys.stderr, level=logbook.ERROR),
])