From 99051b40de3b77c166a24250df3fd38689aa412e Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Tue, 3 Nov 2020 15:08:38 +0100 Subject: BUG: Fixed an issue where `.pyi` weren't picked up by numpy sub-packages --- numpy/ma/setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/ma/setup.py') diff --git a/numpy/ma/setup.py b/numpy/ma/setup.py index d3f34c874..018d38cdd 100644 --- a/numpy/ma/setup.py +++ b/numpy/ma/setup.py @@ -3,6 +3,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('ma', parent_package, top_path) config.add_subpackage('tests') + config.add_data_files('*.pyi') return config if __name__ == "__main__": -- cgit v1.2.1