-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
DOC fix glossary link #23534
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 fix glossary link #23534
Conversation
@@ -268,7 +268,7 @@ Then, setup the magics in a manner similar to ``line_profiler``. | |||
- **Under IPython 0.11+**, first create a configuration profile: | |||
|
|||
.. prompt:: bash $ | |||
|
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.
pre-commit made me do it 😉
So now the CircleCI workflow is triggered thanks to #23508 but the "check the rendered doc" direct link to the There is a "build-doc-and-deploy" Circle workflows but it encompasses many jobs ( Not sure about the best approach to improve the situation ... cc @thomasjpfan @alfaro96 Note that through a few clicks you can look at the rendered doc: |
Hi @lesteve, I think we can create a check status without that action. I will work on that. |
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.
+1 for the fix it-self but let's keep this PR open as a simple way to check the new doc-building CI config.
From my understanding Maybe there is a hint at: https://github.com/braindecode/braindecode, they have a similar setup that works together with |
The issue was that I enabled "GitHub Checks" on CircleCI recently. With "GitHub Checks" on it changed the name of the job shown to GitHub to the workflow name. Changing the name makes it incompatible with the I disabled the CircleCI's "GitHub Checks" feature and the |
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.
Thank you for the PR!
I still cannot see the "check the rendered doc" entry in the last build. |
Actually I do, it's named: "Check the rendered docs here!" |
The |
Co-authored-by: Thomas J. Fan <thomasjpfan@gmail.com>
I think that the problem is related with the following error: |
@@ -20,7 +20,8 @@ set -e | |||
if [ -n "$GITHUB_ACTION" ] | |||
then | |||
# Map the variables for the new documentation builder to the old one | |||
CIRCLE_SHA1=$(git log --no-merges -1 --pretty=format:%H) | |||
CIRCLE_SHA1=$(git log -1 --pretty=format:%H) |
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.
Removing the --no-merges
fixes the issue with finding the changes.
Note: I tried using GITHUB_SHA
here: 8de2674
(#23534), but it didn't pick up the diff.
Co-authored-by: Thomas J. Fan <thomasjpfan@gmail.com> Co-authored-by: Olivier Grisel <olivier.grisel@ensta.org>
Co-authored-by: Thomas J. Fan <thomasjpfan@gmail.com> Co-authored-by: Olivier Grisel <olivier.grisel@ensta.org>
Co-authored-by: Thomas J. Fan <thomasjpfan@gmail.com> Co-authored-by: Olivier Grisel <olivier.grisel@ensta.org>
In https://scikit-learn.org/dev/developers/performance.html
The link is http://scikit-learn.org/dev/glossary.html#term-warm-start rather than http://scikit-learn.org/dev/glossary.html#term-warm_start so it does not go to the right place in the glossary.
This allows to double-check #23508 as well.