You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: After #2457, the docs builds failed due to mention of the new file (defaults.rst) in the master conf.py which is used to build docs for all other versions as well. For now, this PR skips the copy operation when the file is not found to make the conf.py compatible with other versions.
Check list:
New tests are added (if a new feature is added)
New doc strings: description and/or example code are in RST format
Yes, the docs were built for other versions as well, and the html files were running well!
There were some warnings that do not seem related to this PR:
/tmp/tmp9gd7uf6dsphinxcontrib_versioning/61b425286ba89092ba0390b9c2d5a26d3d579ef2/ignite/engine/engine.py:docstring of ignite.engine.engine.Engine:1: WARNING: duplicate object description of ignite.engine.engine.Engine, other instance in engine, use :noindex: for one of them
/tmp/tmp9gd7uf6dsphinxcontrib_versioning/5837b2d40ba8302e986a5a5115b734990cbe201b/ignite/handlers/checkpoint.py:docstring of ignite.handlers.checkpoint.ModelCheckpoint:55: WARNING: Block quote ends without a blank line; unexpected unindent.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2464
Description: After #2457, the docs builds failed due to mention of the new file (
defaults.rst) in the masterconf.pywhich is used to build docs for all other versions as well. For now, this PR skips the copy operation when the file is not found to make theconf.pycompatible with other versions.Check list: