diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-11-12 12:39:18 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-11-12 12:39:18 +0000 |
commit | 3f265ff72fad3ada8e7e67a28227fb84e4c0e6d8 (patch) | |
tree | a1aedb5035f0d6954c7ccdf96546c5d300b4a95a | |
parent | 69409b3c86d126a64dfe0f499873252863c6b071 (diff) | |
download | numpy-3f265ff72fad3ada8e7e67a28227fb84e4c0e6d8.tar.gz |
Temporarily remove umath_test from build, it isn't linking on windows.
The problem is the blas_gemm problem seen elsewhere and I want to get
windows compiling first. It's almost there.
-rw-r--r-- | numpy/core/setup.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 58b38f304..d249034f5 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -400,13 +400,13 @@ def configuration(parent_package='',top_path=None): extra_info = blas_info ) - config.add_extension('umath_tests', - sources = [join('src','umath_tests.c.src'), - ], - depends = [join('blasdot','cblas.h'),] + deps, - include_dirs = ['blasdot'], - extra_info = blas_info - ) +# config.add_extension('umath_tests', +# sources = [join('src','umath_tests.c.src'), +# ], +# depends = [join('blasdot','cblas.h'),] + deps, +# include_dirs = ['blasdot'], +# extra_info = blas_info +# ) config.add_data_dir('tests') |