-
Notifications
You must be signed in to change notification settings - Fork 731
feat(bindings/python)!: Generate stubs for Operator overloads and Scheme #6729
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
Changes from all commits
1b69f2f
b8207af
769a4e2
7dae5df
3ea5ed7
968e491
8f8010c
cf2d114
ababffe
613c3a0
3d736a6
fd97c21
2259881
4226720
7f66a28
a9c2ef2
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 |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ plugins: | |
| python: | ||
| paths: [python] | ||
| options: | ||
| docstring_style: google | ||
| docstring_style: numpy | ||
|
Member
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. What's this change for? You perfer
Contributor
Author
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. well before all these PRs, the code had a mix of docstring conventions which i wanted to standardize as well so i while doing this (with the help of LLMs), all the generated docstrings turned out to be in numpy convention. today i checked that mkdocs was not rendering it properly so made this change to get it working properly. |
||
|
|
||
| nav: | ||
| - Overview: index.md | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
Overloads and Scheme generates as part of the
stub-genprocessThere 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.
This made me think that can we move
stub_gentoodevinstead.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.
actually these are 2 separate processes that cannot be merged into the binding or in odev from what i understood.