Undoing warning suppression, as doesnt really work

This commit is contained in:
Matthew Honnibal 2018-08-10 00:13:34 +02:00
parent 3fb828352d
commit 19f5046934
1 changed files with 5 additions and 12 deletions

View File

@ -1,17 +1,10 @@
# coding: utf8
from __future__ import unicode_literals
import warnings
# This is used to suppress numpy runtime warnings, which warn about irrelevant
# binary incompatibility. We could pin to a specific numpy version, but then
# we risk entering dependency hell if other packages pin to different constraints.
# Ideally we would somehow specify the warning to suppress?
with warnings.catch_warnings(record=True) as w:
from .cli.info import info as cli_info
from .glossary import explain
from .about import __version__
from .errors import Warnings, deprecation_warning
from . import util
from .cli.info import info as cli_info
from .glossary import explain
from .about import __version__
from .errors import Warnings, deprecation_warning
from . import util
def load(name, **overrides):