-
Notifications
You must be signed in to change notification settings - Fork 116
ci: Fix RTD #375
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
ci: Fix RTD #375
Conversation
This reverts commit 16a1efd.
Signed-off-by: Cristian Le <cristian.le@mpsd.mpg.de>
Signed-off-by: Cristian Le <cristian.le@mpsd.mpg.de>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #375 +/- ##
========================================
Coverage 83.80% 83.80%
========================================
Files 24 24
Lines 8167 8167
========================================
Hits 6844 6844
Misses 1323 1323
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
pre_build: | ||
- echo "Placeholder for doxygen builds via cmake" | ||
post_create_environment: | ||
- pip install --pre --upgrade sphinx-book-theme |
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.
If I understand correctly, this line installs sphinx-book-theme==v1.1.0rc1
(sphinx-7 is supported), right?
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.
Yes, here is the build. Basically we do not have a pin for the sphinx-book-theme
, so when RTD detects that sphinx-book-theme
was already installed (right after the environment was created), it uses that one. The --pre
ensures we are pricking up rc
releases (Also a reason why I would prefer on the spglib side to always upload to PyPI
instead of https://test.pypi.org/legacy/)
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.
LGTM. What else needs to be done for v2.2.0
?
Nothing more really. Downstream conda has some issues on |
For now we have a temporary commit 08cc242 to use the pre-release version of sphinx-book-theme