You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
611 B
19 lines
611 B
""" Distributor init file
|
|
|
|
Distributors: you can replace the contents of this file with your own custom
|
|
code to support particular distributions of SciPy.
|
|
|
|
For example, this is a good place to put any checks for hardware requirements
|
|
or BLAS/LAPACK library initialization.
|
|
|
|
The SciPy standard source distribution will not put code in this file beyond
|
|
the try-except import of `_distributor_init_local` (which is not part of a
|
|
standard source distribution), so you can safely replace this file with your
|
|
own version.
|
|
"""
|
|
|
|
try:
|
|
from . import _distributor_init_local # noqa: F401
|
|
except ImportError:
|
|
pass
|