From f25b2c6651dcfe151f93b84dcc8719d95045ee1e Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 24 Jun 2024 11:23:45 -0500 Subject: [PATCH] remove .gitattributes (#740) Contributes to https://github.com/rapidsai/build-planning/issues/31 Removes `.gitattributes` files. These have been here since the beginning of the project (https://github.com/rapidsai/cucim/commit/048d53e6f99c2129b9febd08e0ae6d1b37d74451), for use with `versioneer`. Per the `git` docs ([link](https://git-scm.com/docs/gitattributes#_export_subst)), setting the attribute `export-subst` on a file via a `.gitattributes` tell `git` to replace placeholders in the file with some `git` information. This is no longer done in `_version.py` files in this project, and this project no longer uses `versioneer` (#615). `rapids-build-backend` handles storing git commit information in the published packages. ## Notes for Reviewers For more details, see https://github.com/rapidsai/build-planning/issues/31#issuecomment-2176853319 Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Mike Sarahan (https://github.com/msarahan) - Gregory Lee (https://github.com/grlee77) URL: https://github.com/rapidsai/cucim/pull/740 --- python/cucim/.gitattributes | 1 - 1 file changed, 1 deletion(-) delete mode 100644 python/cucim/.gitattributes diff --git a/python/cucim/.gitattributes b/python/cucim/.gitattributes deleted file mode 100644 index 3708d19e1..000000000 --- a/python/cucim/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -src/cucim/_version.py export-subst