Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jonathan Kamens committed Feb 16, 2016
1 parent d5bd2a9 commit 11465d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/requirements.txt
Expand Up @@ -2,7 +2,7 @@
pip>=7.1.0

# Logging
Logbook==0.10.0
Logbook==0.12.5

# Scientific Libraries

Expand Down
2 changes: 1 addition & 1 deletion zipline/examples/olmar.py
Expand Up @@ -9,7 +9,7 @@
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),
])
Expand Down

0 comments on commit 11465d9

Please sign in to comment.