Skip to content

Commit 11465d9

Browse files
author
Jonathan Kamens
committed
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.
1 parent d5bd2a9 commit 11465d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

etc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pip>=7.1.0
33

44
# Logging
5-
Logbook==0.10.0
5+
Logbook==0.12.5
66

77
# Scientific Libraries
88

zipline/examples/olmar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from zipline.finance import commission
1010

1111
zipline_logging = logbook.NestedSetup([
12-
logbook.NullHandler(level=logbook.DEBUG, bubble=True),
12+
logbook.NullHandler(),
1313
logbook.StreamHandler(sys.stdout, level=logbook.INFO),
1414
logbook.StreamHandler(sys.stderr, level=logbook.ERROR),
1515
])

0 commit comments

Comments
 (0)