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/fft/setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/fft/setup.py') diff --git a/numpy/fft/setup.py b/numpy/fft/setup.py index 9ed824e4f..477948a09 100644 --- a/numpy/fft/setup.py +++ b/numpy/fft/setup.py @@ -14,6 +14,7 @@ def configuration(parent_package='',top_path=None): define_macros=defs, ) + config.add_data_files('*.pyi') return config if __name__ == '__main__': -- cgit v1.2.1