diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-11-03 09:20:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 09:20:31 -0700 |
commit | 8b15e57718042c75af22a25a7d604fa0f938f16e (patch) | |
tree | 0595ce56ac5659b47faef356664d012690ac73ec /numpy/lib/setup.py | |
parent | d62b0ee88b20e5946fe49f0ba533b3e547e4d4f1 (diff) | |
parent | 66b17fbc9666b150c71bb94f2492fd880b2641e4 (diff) | |
download | numpy-8b15e57718042c75af22a25a7d604fa0f938f16e.tar.gz |
Merge pull request #17701 from BvB93/pyi
BUG: Fixed an issue where `.pyi` files were ignored 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__': |