diff options
| author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-06 17:05:48 +0200 |
|---|---|---|
| committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-06 17:58:24 +0200 |
| commit | 22412b3f46451177286f8fc58509a69bb2d95731 (patch) | |
| tree | 7b0c7dcf1b38f367ed30ffeedf98f7c04487612c /numpy/testing/setup.py | |
| parent | 4340579c303669fa1b2ba70f3c9c875ab6de6d05 (diff) | |
| download | numpy-22412b3f46451177286f8fc58509a69bb2d95731.tar.gz | |
BLD: Add support for *.pyi data-files to `np.testing._private`
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 7652a94a2..6f203e872 100755 --- a/numpy/testing/setup.py +++ b/numpy/testing/setup.py @@ -7,6 +7,7 @@ def configuration(parent_package='',top_path=None): config.add_subpackage('_private') config.add_subpackage('tests') config.add_data_files('*.pyi') + config.add_data_files('_private/*.pyi') return config if __name__ == '__main__': |
