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/lib/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/lib/setup.py')
-rw-r--r-- | numpy/lib/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/setup.py b/numpy/lib/setup.py index b3f441f38..7520b72d7 100644 --- a/numpy/lib/setup.py +++ b/numpy/lib/setup.py @@ -4,6 +4,7 @@ def configuration(parent_package='',top_path=None): config = Configuration('lib', parent_package, top_path) config.add_subpackage('tests') config.add_data_dir('tests/data') + config.add_data_files('*.pyi') return config if __name__ == '__main__': |