mirror of https://github.com/explosion/spaCy.git
Catch numpy warning
This commit is contained in:
parent
6eebfc7bf4
commit
1c0614ecd2
|
@ -1,11 +1,17 @@
|
||||||
# coding: utf8
|
# coding: utf8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
import warnings
|
||||||
|
|
||||||
from .cli.info import info as cli_info
|
# This is used to suppress numpy runtime warnings, which warn about irrelevant
|
||||||
from .glossary import explain
|
# binary incompatibility. We could pin to a specific numpy version, but then
|
||||||
from .about import __version__
|
# we risk entering dependency hell if other packages pin to different constraints.
|
||||||
from .errors import Warnings, deprecation_warning
|
# Ideally we would somehow specify the warning to suppress?
|
||||||
from . import util
|
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
|
||||||
|
|
||||||
|
|
||||||
def load(name, **overrides):
|
def load(name, **overrides):
|
||||||
|
|
Loading…
Reference in New Issue