blob: 11657f9819c3bc9f189f95f75026491f2e29732e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from __version__ import version as __version__
# Must import local ccompiler ASAP in order to get
# customized CCompiler.spawn effective.
import ccompiler
import unixccompiler
try:
import __config__
_INSTALLED = True
except ImportError:
_INSTALLED = False
if _INSTALLED:
from numpy.testing import ScipyTest
test = ScipyTest().test
|