_distributor_init.py 611 B

123456789101112131415161718
  1. """ Distributor init file
  2. Distributors: you can replace the contents of this file with your own custom
  3. code to support particular distributions of SciPy.
  4. For example, this is a good place to put any checks for hardware requirements
  5. or BLAS/LAPACK library initialization.
  6. The SciPy standard source distribution will not put code in this file beyond
  7. the try-except import of `_distributor_init_local` (which is not part of a
  8. standard source distribution), so you can safely replace this file with your
  9. own version.
  10. """
  11. try:
  12. from . import _distributor_init_local # noqa: F401
  13. except ImportError:
  14. pass