-
Notifications
You must be signed in to change notification settings - Fork 165
Rework documentation deployment #648
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
Conversation
.readthedocs.yaml
Outdated
build: | ||
os: "ubuntu-22.04" | ||
tools: | ||
python: "3.10" |
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.
This should probably mirror our CI configuration, which uses 20.04 and Python 3.6, with a comment stating that these two should be identical.
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.
Of course, that makes sense. Fix incoming.
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
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.
Was this file generated? Can you add a comment stating which command was used to generate the 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.
For sure :) I was thinking of adding the command also to the make docs
make instructions.
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.
I did add it to make docs
and created a separate make docs-ci
to only run the sphinx build command when testing the generation process in the CI workflow.
No description provided.