-
Notifications
You must be signed in to change notification settings - Fork 10
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
Issue 7 add sphinx doc #23
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.
Congrats on migrating the documentation! I'm not entirely sure what's new vs what's just migrated, so let me keep my thoughts general to some of the technology in the PR, based on my experience with pysindy.
- Have you tried adding the
-W
flag to the CI's sphinx invocation?sphinx
is pretty good at building the docs regardless of RST mistakes, but it's useful to treat those mistakes as errors in CI, rather than just a warning in the GH action log. - The doc CI calls Makefile/Make.bat, instead of directly calling
sphinx ...
. To wit, I'm not sure how to pass sphinx arguments tomake html
. RTD itself doesn't callmake html
, we've removed it, and looking at pandas, apparently they have too. Sphinx itself is pretty cross platform, so I'm not sure whysphinx quickstart
autogenerates these files still. - RTD recommends pinning doc dependency versions. I'm a bit torn on the issue, myself, but their rationale is that without pinned versions, build errors can appear in CI are difficult to troubleshoot locally without scanning through the CI logs to find the exact versions of everything that might have caused the error.
- I have struggled in the past to manage jupyter notebooks in a package repository. None of these seem problematically large or long-running, but for the sake of reading diffs it might be worth saving them as python files and only creating the notebooks using
jupytext
on doc builds. - Regardless, there's the question of how to test the jupyter notebooks. E.g. if you change the call signature of a function, how does CI catch the notebook that demonstrates that function? Here's our infrastructure for doing so. We actually test the .py files that shadow notebooks, because we have to substitute certain globals in order to run the notebooks extra fast, but you can do the same with actual ipynb files using nbconvert and nbformat if you're not concerned with test duration.
Thanks for your suggestions!
|
Oh fully agree that notebooks are a great communication tool! I was suggesting having both the notebook and the script:
Not for now though! Just letting you know that if you run into the same issues we've run into at pysindy (notebooks that take too long to run even in CI, but which still need to keep up with breaking API changes, and whose edits to do so run large in |
Sure, thanks for your suggestions! Definitely will keep that in mind in the future. We have planned a new internal scientific project that will have a lot of scripts and Jupyter notebooks, might be useful in the future when things become complicated. |
I will keep this PR open for a while because it will take some time for Angela to go over all the documentation. |
sphinx-quickstart is used to generate the base config (conf.py and Makefile). After that, extension configs are added in the conf.py.
Here are the sources: 1. Tutorial: https://github.com/OceanNetworksCanada/api-tutorial/blob/master/Tutorial_Notebook.ipynb. For onc library tutorial, I added the requests (vanilla) example as a comparison. 2. Code Examples: https://wiki.oceannetworks.ca/display/O2A/Sample+Code 3. Contributing: None 4. API Guide: https://wiki.oceannetworks.ca/display/O2A/Discovery+methods 5. API Reference: auto generated from docstring 6. README: https://wiki.oceannetworks.ca/display/O2A/Getting+Started 7. Licence: I add more boilerplate declaration so that GitHub can detect it is Apache license
The information is mainly copied from OpenAPI page, with numpy docstring style applied. All the doctests are disabled. I will add a separate file for them so they are not outdated.
425ac7a
to
06fe891
Compare
Fix #7, Fix #8. I will leave #9 open because I haven't finished all the docstring.
Angela kindly agrees to review the second commit that contains a lot of documentation. I have some additional commit message in each commit to explain what I have done. https://oceannetworkscanada.github.io/api-python-client/
I added some line breaks for the markdown files to get rid of long sentences. The rule is not based on a fixed width, but more on a semantic meaning.
CI (doc.yml, doc build and deploy, there is no test step) is only triggered when pushing to main. I added a manual trigger in case it is desired before the merge. Currently the gh-page deployment workflow run has to be approved first by me as a protection rule.
For Eli: I have noticed some outdated info on the schema of response json (e.g, some values can be null, allowableRange and suboptions are missing in the discover data products, ...). I will compile a list after I finish all the docstring.