-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-28752][BUILD][FOLLOWUP] Fix to install rouge instead of rogue
#26686
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
Conversation
|
We should also fix the typo that @srowen mentioned: #26521 (comment) |
|
Yes. I'll update this PR~ |
|
The Ruby update may not be necessary. It was after all coming from installing a totally unrelated library. But, still not a bad idea IMHO to update it. |
rougerouge instead of rogue
|
Yes. I updated this PR first for only types. I'm building the docker image to make it sure. |
jiangxb1987
left a comment
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.
LGTM
|
Thank you for swift review and approval, @jiangxb1987 ! |
|
Thank you, @jiangxb1987 and @srowen . |
HyukjinKwon
left a comment
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.
Thanks for fixing this @dongjoon-hyun. LGTM too
|
Thanks, @HyukjinKwon . |
|
Test build #114486 has finished for PR 26686 at commit
|
|
Test build #114484 has finished for PR 26686 at commit
|
### What changes were proposed in this pull request? This PR aims to fix a type; `rogue` -> `rouge` . This is a follow-up of apache#26521. ### Why are the changes needed? To support `Python 3`, we upgraded from `pygments` to `rouge`. ### Does this PR introduce any user-facing change? No. (This is for only document generation.) ### How was this patch tested? Manually. ``` $ docker build -t test dev/create-release/spark-rm/ ... 1 gem installed Successfully installed rouge-3.13.0 Parsing documentation for rouge-3.13.0 Installing ri documentation for rouge-3.13.0 Done installing documentation for rouge after 4 seconds 1 gem installed Removing intermediate container 9bd8707d9e84 ---> a18b2f6b0bb9 ... ``` Closes apache#26686 from dongjoon-hyun/SPARK-28752. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
What changes were proposed in this pull request?
This PR aims to fix a type;
rogue->rouge.This is a follow-up of #26521.
Why are the changes needed?
To support
Python 3, we upgraded frompygmentstorouge.Does this PR introduce any user-facing change?
No. (This is for only document generation.)
How was this patch tested?
Manually.