diff options
| author | Hameer Abbasi <einstein.edison@gmail.com> | 2020-05-06 20:34:34 +0200 |
|---|---|---|
| committer | Hameer Abbasi <einstein.edison@gmail.com> | 2020-05-06 21:57:36 +0200 |
| commit | a51ac2610cd6a3c23d48c65709397083da395733 (patch) | |
| tree | ce639518f8ed4f0f0e114d94f05388e3479b0ca0 /numpy/ma | |
| parent | 9babf6596876be7be02e823688a2b359756e27f3 (diff) | |
| download | numpy-a51ac2610cd6a3c23d48c65709397083da395733.tar.gz | |
Mark tests as a subpackage rather than data.
Diffstat (limited to 'numpy/ma')
| -rw-r--r-- | numpy/ma/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/setup.py b/numpy/ma/setup.py index 144a961c2..d3f34c874 100644 --- a/numpy/ma/setup.py +++ b/numpy/ma/setup.py @@ -2,7 +2,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('ma', parent_package, top_path) - config.add_data_dir('tests') + config.add_subpackage('tests') return config if __name__ == "__main__": |
