Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove flake8, clang tools from wholegraph CMake (#103)
`wholgraph`'s CMake has some configuration to run `flake8`, `clang-tidy`, and `clang-foramt` via CMake. This proposes removing it. ## Notes for Reviewers ### Risks to doing this? I don't think any. `flake8` and `clang-format` configs are unnecessary, as those are already run via `pre-commit` here: https://github.com/rapidsai/cugraph-gnn/blob/71675d868589ff9f904197f729985de1555cb914/.pre-commit-config.yaml#L22 https://github.com/rapidsai/cugraph-gnn/blob/71675d868589ff9f904197f729985de1555cb914/.pre-commit-config.yaml#L37 The `clang-tidy` support must not actually be used today... it refers to a script that doesn't exist in this repo: https://github.com/rapidsai/cugraph-gnn/blob/71675d868589ff9f904197f729985de1555cb914/cpp/cmake/CodeChecker.cmake#L42-L43 This code had been in the `wholegraph` repo for a while... it was added in June 2023 (rapidsai/wholegraph#24) and then never modified again. ### Benefits of doing this? Similar to #102, I'm putting up PRs like this because I'm planning to attempt to add `libwholegraph` wheels, and want to simplify the `wholegraph` / `pylibwholegraph` CMake as much as possible before doing that, to reduce the implementation and reviewing effort. Authors: - James Lamb (https://github.com/jameslamb) Approvers: - https://github.com/linhu-nv URL: #103
- Loading branch information