-
Notifications
You must be signed in to change notification settings - Fork 29
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
Support optional and named arguments in inlining #2801
base: master
Are you sure you want to change the base?
Changes from all commits
29dc3fd
23592fb
abef8fd
a521faf
aa6f2e6
87f5172
08cb731
c842289
0344b47
3fd04e8
e9a56aa
cf7537e
62fa450
6a6b1b3
6ebffae
cfa95aa
6deaea7
3737df5
8f26e80
237f56d
cbb65f0
f77715a
8651a19
447b147
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,5 +29,4 @@ src/*.egg-info | |
.venv | ||
cov.xml | ||
.coverage.* | ||
*.psycache | ||
__pycache__ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
all: developer_guide reference_guide user_guide | ||
.PHONY: developer_guide reference_guide user_guide | ||
|
||
developer_guide: | ||
make -C developer_guide html SPHINXOPTS="-W --keep-going" | ||
|
||
reference_guide: | ||
make -C reference_guide html SPHINXOPTS="-W --keep-going" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately this gives:
Possibly the simplest thing to do is not to "treat warnings as errors" for the Reference Guide. |
||
|
||
user_guide: | ||
make -C user_guide html SPHINXOPTS="-W --keep-going" | ||
|
||
clean: | ||
make -C developer_guide clean | ||
make -C reference_guide allclean | ||
make -C user_guide clean | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -195,5 +195,5 @@ | |
'OMPScheduleClause', | ||
'OMPFirstprivateClause', | ||
'OMPSharedClause', | ||
'OMPDependClause' | ||
] | ||
'OMPDependClause', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please revert (since there's no functional change to this file). |
||
] |
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 adding this. Please could you add the usual licence/copyright header (with appropriate year).
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.
Also, please add a comment saying it builds the html versions of all of the docs.