diff options
author | Kirill Smelkov <kirr@nexedi.com> | 2014-07-16 11:41:21 +0400 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-07-27 20:04:44 +0200 |
commit | 70e88caedfc9e2c901b986e62dd6b92970fb9e54 (patch) | |
tree | cf4fae2499dd00957ff5a8ee90105c6f7c539f6f | |
parent | c32d0cb4100084f99c851a314bd9d2722c4ee9f3 (diff) | |
download | numpy-70e88caedfc9e2c901b986e62dd6b92970fb9e54.tar.gz |
MAINT: .gitignore += generated umath/loops.h
Commit 494abcf1 (ENH: speed-up minimum, maximum and xor for bool dtype)
reworked numpy/core/src/umath/loops.h to be autogenerated at build time,
but forgot to update .gitignore.
Fix it, so that the now-autogenerated loops.h do not constantly show as
untracked in git status output.
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index c926730a7..3952be1fe 100644 --- a/.gitignore +++ b/.gitignore @@ -129,7 +129,7 @@ numpy/core/src/private/npy_partition.h numpy/core/src/private/scalarmathmodule.h numpy/core/src/scalarmathmodule.c numpy/core/src/umath/funcs.inc -numpy/core/src/umath/loops.c +numpy/core/src/umath/loops.[ch] numpy/core/src/umath/operand_flag_tests.c numpy/core/src/umath/simd.inc numpy/core/src/umath/struct_ufunc_test.c |