diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-25 18:19:16 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-25 18:21:36 +0100 |
commit | 5302f81bf83a6c4fcdcfe5c00a6f6951b851c405 (patch) | |
tree | 441b4ed23987e9d159974b587dc4cb2502e8b37f /.gitignore | |
parent | d4b2d4f80060285ac085ea874aceaf9fa1bfb757 (diff) | |
download | numpy-5302f81bf83a6c4fcdcfe5c00a6f6951b851c405.tar.gz |
MAINT: fix source files that were incorrectly listed in .gitignore
To find such files:
```
import os
with open('../numpy/.gitignore') as f:
ignored = f.readlines()
ignored = [s.split('\n')[0] for s in ignored if s.startswith('numpy')]
for fname in ignored:
if os.path.exists(fname):
print(fname)
```
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore index e2ee6a013..e6d9fa52e 100644 --- a/.gitignore +++ b/.gitignore @@ -132,9 +132,6 @@ numpy/core/include/numpy/config.h numpy/core/include/numpy/multiarray_api.txt numpy/core/include/numpy/ufunc_api.txt numpy/core/lib/ -numpy/core/src/common/npy_binsearch.h -numpy/core/src/common/npy_cpu_features.c -numpy/core/src/common/npy_partition.h numpy/core/src/common/npy_sort.h numpy/core/src/common/templ_common.h numpy/core/src/multiarray/_multiarray_tests.c @@ -160,8 +157,6 @@ numpy/core/src/npysort/sort.c numpy/core/src/private/npy_binsearch.h numpy/core/src/private/npy_partition.h numpy/core/src/private/templ_common.h -numpy/core/src/umath/_rational_tests.c -numpy/core/src/umath/_struct_ufunc_tests.c numpy/core/src/umath/_umath_tests.c numpy/core/src/umath/scalarmath.c numpy/core/src/umath/funcs.inc |