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/testing/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/testing/setup.py')
-rwxr-xr-x | numpy/testing/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/setup.py b/numpy/testing/setup.py index 13191f13f..7652a94a2 100755 --- a/numpy/testing/setup.py +++ b/numpy/testing/setup.py @@ -6,6 +6,7 @@ def configuration(parent_package='',top_path=None): config.add_subpackage('_private') config.add_subpackage('tests') + config.add_data_files('*.pyi') return config if __name__ == '__main__': |