-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
[R-package] add new copyright holder in DESCRIPTION #3409
Conversation
R-package/DESCRIPTION
Outdated
@@ -7,7 +7,8 @@ Authors@R: c( | |||
person("Guolin", "Ke", email = "[email protected]", role = c("aut", "cre")), | |||
person("Damien", "Soukhavong", email = "[email protected]", role = c("aut")), | |||
person("Yachen", "Yan", role = c("ctb")), | |||
person("James", "Lamb", email="[email protected]", role = c("aut")) | |||
person("James", "Lamb", email="[email protected]", role = c("aut")), | |||
person("IBM Corporation", role = c("IBM Corporation")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
role
should be ctb
or aut
I believe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ha of course! I did this too fast, sorry
* [R-package] add new copyright holder in DESCRIPTION * fix role
* [R-package] add new copyright holder in DESCRIPTION * fix role
…3338) * [R-package] update DESCRIPTION per CRAN comments * newlines * Apply suggestions from code review Co-authored-by: Nikita Titov <[email protected]> * more fixes * update Rbuildignore * more changes * more changes per CRAN response * add email * run examples in CI * add newest CRAN response * add Solaris patch * update patch * another attempt at ifaddrs patch * fix unnecessary comment * update configure * comments * bump version * tabs * fix address alignment, required by cran (#3415) * fix dataset binary file alignment * many fixes * fix warnings * fix bug * Update file_io.cpp * Update file_io.cpp * simplify code * Apply suggestions from code review * general * remove unneeded alignment * Update file_io.h * int32 to byte8 alignment * Apply suggestions from code review * Apply suggestions from code review * [R-package] add new copyright holder in DESCRIPTION (#3409) * [R-package] add new copyright holder in DESCRIPTION * fix role * fixing conflicts * [R-package] add new copyright holder in DESCRIPTION (#3409) * [R-package] add new copyright holder in DESCRIPTION * fix role * trying to fix conflicts * more fixes * this will work * update cran-comments * simplify solaris, add more testing docs * stuff * remove rchck docs * Apply suggestions from code review Co-authored-by: Nikita Titov <[email protected]> * remove extra use of cat() * change solaris check * update docs * remove testing code * fix warning about cleanup not having execute permissions * fix cmake builds * remove blank line Co-authored-by: Nikita Titov <[email protected]> Co-authored-by: Guolin Ke <[email protected]>
This pull request has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
In #3338 , we learned from CRAN that all copyright holders of any part of the source code need to be listed in the R package's
DESCRIPTION
file.Since #3160 added some code with an IBM copyright on it, IBM needs to be added to
DESCRIPTION
. #3338 (comment)