diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-09-14 11:43:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 11:43:53 -0500 |
commit | 245b73ef38844395c36ce4c1032092c81253d112 (patch) | |
tree | 2bd4a460cd6c028abff4cf41bacafb430fa571f9 | |
parent | 4cdd3606160de923fb4054cf93f4ea02a356def0 (diff) | |
parent | 365cd3dba3487802d5a2d4e046a5c16a31bd1590 (diff) | |
download | numpy-245b73ef38844395c36ce4c1032092c81253d112.tar.gz |
Merge pull request #17313 from seberg/mark-vendored-generated
MAINT: Mark vendored/generated files in .gitattributes
-rw-r--r-- | .gitattributes | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 81b8037d4..ad7d3b227 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,3 +8,13 @@ doc/release/*.rst merge=union # than nothing. This also affects repo statistics. *.c.src linguist-language=C *.h.src linguist-language=C + +# Mark some files as vendored +numpy/linalg/lapack_lite/f2c.c linguist-vendored +numpy/linalg/lapack_lite/f2c.h linguist-vendored +tools/npy_tempita/* linguist-vendored + +# Mark some files as generated +numpy/linalg/lapack_lite/f2c_*.c linguist-generated +numpy/linalg/lapack_lite/lapack_lite_names.h linguist-generated + |