diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-03 20:01:36 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-03 20:01:36 +0000 |
commit | 5873cfd7d0d8f280a3682ed80540cab2c1af65e4 (patch) | |
tree | a7ac8c6a9d800c0dbe1c39618e3f9e687ff0136a | |
parent | 484c100392601f4942ceecbedf32e6df0201d473 (diff) | |
download | numpy-5873cfd7d0d8f280a3682ed80540cab2c1af65e4.tar.gz |
Fix setup script. Exclude test that requires building from the main test suite.
-rwxr-xr-x | numpy/f2py/setup.py | 2 | ||||
-rw-r--r-- | numpy/testing/nosetester.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index dc76cd2e0..cde1545a1 100755 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -30,8 +30,6 @@ from __version__ import version def configuration(parent_package='',top_path=None): config = Configuration('f2py', parent_package, top_path) - config.add_subpackage('lib') - config.add_data_dir('docs') config.add_data_files('src/fortranobject.c', diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index a9aced477..5e4a8cdfe 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -318,6 +318,7 @@ class NoseTester(object): argv += ['--exclude','gen_ext'] argv += ['--exclude','pyrex_ext'] argv += ['--exclude','swig_ext'] + argv += ['--exclude','array_from_pyobj'] nose = import_nose() |