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/testing/setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/testing/setup.py') 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__': -- cgit v1.2.1