diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-11-03 15:08:38 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-11-03 15:08:38 +0100 |
commit | 99051b40de3b77c166a24250df3fd38689aa412e (patch) | |
tree | b45b4ea21ba4dc333c2a2d4616cad91202cec503 /numpy/fft/setup.py | |
parent | 9dca4085c724b3e62d54dee33e42ebdba3bb975c (diff) | |
download | numpy-99051b40de3b77c166a24250df3fd38689aa412e.tar.gz |
BUG: Fixed an issue where `.pyi` weren't picked up by numpy sub-packages
Diffstat (limited to 'numpy/fft/setup.py')
-rw-r--r-- | numpy/fft/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/fft/setup.py b/numpy/fft/setup.py index 9ed824e4f..477948a09 100644 --- a/numpy/fft/setup.py +++ b/numpy/fft/setup.py @@ -14,6 +14,7 @@ def configuration(parent_package='',top_path=None): define_macros=defs, ) + config.add_data_files('*.pyi') return config if __name__ == '__main__': |