diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-11-29 19:11:11 +0000 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2020-11-29 19:11:11 +0000 |
commit | 3a07bd6ad039f5f2be58c92d7843a112e9f95244 (patch) | |
tree | 001c5e6c144b47ffe9832afdbfaff6a0a21b12e7 /numpy/typing/setup.py | |
parent | 76930e7d0c22e227c9ff9249a90a6254c5a6b547 (diff) | |
download | numpy-3a07bd6ad039f5f2be58c92d7843a112e9f95244.tar.gz |
MAINT: clean up a spurious warning in numpy/typing/setup.py
Warning was:
could not resolve pattern in 'numpy/typing': '*.pyi'
Diffstat (limited to 'numpy/typing/setup.py')
-rw-r--r-- | numpy/typing/setup.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/typing/setup.py b/numpy/typing/setup.py index 694a756dc..c444e769f 100644 --- a/numpy/typing/setup.py +++ b/numpy/typing/setup.py @@ -3,7 +3,6 @@ def configuration(parent_package='', top_path=None): config = Configuration('typing', parent_package, top_path) config.add_subpackage('tests') config.add_data_dir('tests/data') - config.add_data_files('*.pyi') return config |