diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-20 07:27:43 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-20 07:27:43 +0000 |
commit | b29b5900de7389529d369f35a5f9629e8463c275 (patch) | |
tree | 611609935028c089e5d43c192be6e35ad7db5316 /numpy/numarray/setup.py | |
parent | 4f3c3755d9fcbfd9ce0551c19bb893e7ba73db91 (diff) | |
download | numpy-b29b5900de7389529d369f35a5f9629e8463c275.tar.gz |
Fix reference-count problem in z **= 1 and more numarray compatiblity fixes.
Diffstat (limited to 'numpy/numarray/setup.py')
-rw-r--r-- | numpy/numarray/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/setup.py b/numpy/numarray/setup.py index 37571bec1..f0d913855 100644 --- a/numpy/numarray/setup.py +++ b/numpy/numarray/setup.py @@ -5,7 +5,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('numarray',parent_package,top_path) - config.add_data_files('include/numarray/*.h') + config.add_data_files('numpy_numarray') # Configure fftpack_lite config.add_extension('_capi', |