Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace local copyright check with pre-commit-hooks verify-copyright #14917

Merged
merged 23 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0af7a37
Replace local copyright check with pre-commit-hooks verify-copyright
KyleFromNVIDIA Jan 29, 2024
60c59ec
Remove --batch argument
KyleFromNVIDIA Jan 29, 2024
f89733f
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Jan 29, 2024
2f322b2
Temporary debug statement
KyleFromNVIDIA Jan 29, 2024
857843c
Update debug
KyleFromNVIDIA Jan 29, 2024
88c8b0b
Update debug again
KyleFromNVIDIA Jan 29, 2024
63bce3d
Remove debug statement
KyleFromNVIDIA Jan 30, 2024
6c260ca
Revert copyright updates
KyleFromNVIDIA Jan 30, 2024
c294877
Remove copyright.py
KyleFromNVIDIA Jan 30, 2024
4da41fd
Update pre-commit-hooks version
KyleFromNVIDIA Jan 30, 2024
dc4289b
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Jan 30, 2024
160fa57
Remove unneeded args
KyleFromNVIDIA Jan 30, 2024
5a57404
Simulate a mistaken copyright update
KyleFromNVIDIA Jan 30, 2024
2ad1cde
Revert "Simulate a mistaken copyright update"
KyleFromNVIDIA Jan 30, 2024
0ca4a35
Use v0.0.1
KyleFromNVIDIA Jan 30, 2024
ceb3ddf
Add exclude to hook configuration
KyleFromNVIDIA Jan 30, 2024
94d1990
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Feb 26, 2024
0cb7ea6
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Feb 26, 2024
423c33c
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Feb 27, 2024
c640477
Merge branch 'branch-24.04' into verify-copyright
bdice Feb 29, 2024
bf5950c
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Mar 4, 2024
17e811b
Empty commit
KyleFromNVIDIA Mar 4, 2024
6682337
Merge branch 'branch-24.04' into verify-copyright
KyleFromNVIDIA Mar 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,6 @@ repos:
- cmakelang==0.6.13
verbose: true
require_serial: true
- id: copyright-check
name: copyright-check
entry: python ./ci/checks/copyright.py --git-modified-only --update-current-year
language: python
pass_filenames: false
additional_dependencies: [gitpython]
- id: doxygen-check
name: doxygen-check
entry: ./ci/checks/doxygen.sh
Expand Down Expand Up @@ -161,6 +155,13 @@ repos:
hooks:
- id: ruff
files: python/.*$
- repo: https://github.com/rapidsai/pre-commit-hooks
rev: v0.0.1
hooks:
- id: verify-copyright
exclude: |
(?x)
cpp/include/cudf_test/cxxopts[.]hpp$


default_language_version:
Expand Down
277 changes: 0 additions & 277 deletions ci/checks/copyright.py

This file was deleted.

Loading