-
Notifications
You must be signed in to change notification settings - Fork 81
DOC: shared-libraries: fix and clarify install location example #771
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
DOC: shared-libraries: fix and clarify install location example #771
Conversation
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.
Can you also please fix the commit message to comply with the format we use for this project? Namely, it should have a summary line of less than 78 characters, starting with an identifier in all caps, DOC
in this case, followed by colons and the summary of the changes. The details go in the body. Something like
DOC: shared-libraries: fix and clarify install location example
Fixes #769
@dnicolodi happy to fix all the above, although for the commit message wouldn't that be easier to fix when squashing the commits on merge? I guess I can fix all the above, squash the commits, and force push to the branch too but that is a bit more involved |
Note also that completely independent of which GitHub repo you are contributing to, you must add "fixes #XXX" in the extended description, not in the one-line summary/title. Also, use "fixes" not "fix for". Failure to obey these rules means that GitHub won't associate the fix with the issue, and the issue will not get closed when the PR is merged. |
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.
There is trailign whitespace somewhere. CI is not happy.
You should do just that. The goal is to teach how to contribute to this project while freeing the maintainers from menial task. |
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.
CI is still not happy.
The CI failure is due to a bug in pygments pygments/pygments#2918 |
@dnicolodi sorry I had a few other things to work on but can get back to this on Friday. Maybe switching the codeblock back to python would be the quicker fix |
I would use |
5aa44a9
to
48fcf17
Compare
okay cleaned up the commits, updated the code-block to text, added some comments about the pygments issue, and ran precommit locally to hopefully avoid further ci complaints |
Thanks. |
Updates install_path to install_dir.
Updates code block to be more explicit with shared_library usage.
Fixes #769